~aw/smart-dev/trunk

« back to all changes in this revision

Viewing changes to web_smartux/static/src/xml/website.tour.xml

  • Committer: Anders Wallenquist
  • Date: 2014-09-09 11:56:02 UTC
  • Revision ID: anders.wallenquist@vertel.se-20140909115602-a3j4fuaj7jjo3t68
Initial commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="utf-8"?>
 
2
<templates id="template" xml:space="preserve">
 
3
    <t t-name="tour.popover">
 
4
        <div t-attf-class="#{ fixed ? 'popover tour fixed' : 'popover tour' }">
 
5
            <div class="arrow" t-if="!next"></div>
 
6
            <h3 class="popover-title"></h3>
 
7
            <div class="popover-content"></div>
 
8
            <t t-if="next or end">
 
9
                <nav class="popover-navigation">
 
10
                    <t t-if="next">
 
11
                        <button class="btn btn-sm btn-default" data-role="next"><t t-esc="next"/></button>
 
12
                    </t>
 
13
                    <small t-if="next &amp;&amp; end">
 
14
                        <span class="text-muted"> or </span>
 
15
                        <button class="btn-link" data-role="end" style="float: none; padding: 0"><t t-esc="end"/></button>
 
16
                    </small>
 
17
                    <t t-if="end &amp;&amp; ! next">
 
18
                        <button class="btn btn-sm btn-default" data-role="end"><t t-esc="end"/></button>
 
19
                    </t>
 
20
                </nav>
 
21
            </t>
 
22
        </div>
 
23
    </t>
 
24
    <t t-name="tour.popover_title">
 
25
        <t t-esc="title"/><button title="End This Tutorial" type="button" class="close" data-role="end">×</button>
 
26
    </t>
 
27
</templates>