fixed beta 1 bugs: 31069 divider between contrib pages. removed direct use of request var
[com.zyxware.civiwci.git] / templates / CRM / Wci / Form / ProgressBar.tpl
1 {literal}
2 <style>
3 .crm-wci-pb hr {
4 align:center;
5 display: block; height: 1px;
6 border: 0; border-top: 1px;
7 margin: 1em 0; padding: 0;
8 }
9 </style>
10 {/literal}
11 {* HEADER *}
12 <div class="crm-block crm-form-block">
13 <div class="crm-submit-buttons">
14 {include file="CRM/common/formButtons.tpl" location="top"}
15 </div>
16
17 {* FIELD EXAMPLE: OPTION 1 (AUTOMATIC LAYOUT) *}
18
19 {foreach from=$elementNames item=elementName}
20 <div class="crm-section">
21 <div class="label">{$form.$elementName.label}</div>
22 <div class="content">{$form.$elementName.html}</div>
23 <div class="clear"></div>
24 </div>
25 {/foreach}
26
27 {* FIELD EXAMPLE: OPTION 2 (MANUAL LAYOUT)
28
29 <div>
30 <span>{$form.favorite_color.label}</span>
31 <span>{$form.favorite_color.html}</span>
32 </div>
33
34 {* FOOTER *}
35 <div class="crm-submit-buttons">
36 {include file="CRM/common/formButtons.tpl" location="bottom"}
37 </div>
38 </div>