plugins: updated query_editor
[myslice.git] / plugins / wizard / wizard.html
1 <!-- BEGIN Smart Wizard -->
2 <div id="wizard" class="swMain">
3   <ul>
4     {% for son in sons %}
5     <li>
6       <a href="#step-{{forloop.counter}}">
7         <label class="stepNumber">{{forloop.counter}}</label>
8         <span class="stepDesc">Step {{forloop.counter}}<br/><small>{{ son.title }}</small></span>
9       </a>
10     </li>
11     {% endfor %}
12   </ul>
13   
14   {% for son in sons %}
15   <div id="step-{{forloop.counter}}">   
16     <h2 class="StepTitle">{{ son.title }}</h2>
17     {{son.rendered}}
18   </div>
19   {% endfor %}
20 </div> <!-- END wizard -->
21 <!-- END Smart Wizard -->