-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathwizard.html
More file actions
32 lines (29 loc) · 914 Bytes
/
wizard.html
File metadata and controls
32 lines (29 loc) · 914 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<template name="wizardBody">
<table class="table table-bordered wizard">
{{> wizardStep firstStepData}}
</table>
</template>
<template name="wizardStep">
{{#if enabled}}
{{#if isOpen}}
<tr>
<td class="wizard-content span6">
{{> content}}
{{#if nextAllowed}}
<button class="next btn pull-right">Next</button>
{{/if}}
</td>
</tr>
{{else}}
<tr>
<td class="wizard-content-compressed span6">
{{> contentCompressed}}
<button class="edit-step btn pull-right" href="#"><i class="icon-pencil"></i></button>
</td>
</tr>
{{> nextStep nextStepData}}
{{/if}}
{{else}}
{{> nextStep nextStepData}}
{{/if}}
</template>