Statistics
| Branch: | Tag: | Revision:

root / snf-cyclades-app / synnefo / ui / new_ui / ui / javascripts / templates / wizard.hbs @ 0467b6cd

History | View | Annotate | Download (755 Bytes)

1
<section class="overlay-area-custom">
2
	<div id="vm-wizard" class="overlay-div wizard">
3
		<div class="top">
4
			<div class="numbers row">
5
					{{close-1 action="resetClose"}}
6
					{{collection Synnefo.WizardHeadersView}}
7
			</div>
8
			{{collection Synnefo.WizardSubMenusView}}
9
			{{!-- maybe the menu should be part of each step -> html change (move from top) --}}
10
		</div>
11
		<div class="middle">
12
			<div class="steps">
13
				{{view Synnefo.WizardVmStep1View}}
14
			</div>
15
		</div>
16
		<div class="bottom">
17
			<div class="row">
18
				{{view Synnefo.WizardBtnBackView}}
19
				{{view Synnefo.WizardBtnNextView}}
20
			</div>
21
		</div>
22
	</div>
23
</section>
24

    
25
{{!-- 
26
// list.hbs
27
{{ each }}
28
{{ render 'item' }}
29
{{}}
30

    
31
// item.hbs
32
{{# if selectedId == this.id }}current{{/ if}} --}}