src/main/webapp/templates-hidden/wizard-all.html
author Tomas Zeman <tzeman@volny.cz>
Thu, 12 Apr 2012 10:52:42 +0200
changeset 48 366e1f8d93bb
parent 17 2be6a0d25da5
child 51 523c5c5b84e5
permissions -rw-r--r--
Twitter bootstrap forms

<div>
  <wizard:screen_info>
    <div>Page <wizard:screen_number/> of <wizard:total_screens/></div>
  </wizard:screen_info>
  <wizard:wizard_top> <div> <wizard:bind/> </div> </wizard:wizard_top>
  <wizard:screen_top> <div> <wizard:bind/> </div> </wizard:screen_top>
  <wizard:errors>
    <div> <ul> <wizard:item><li><wizard:bind/></li></wizard:item> </ul> </div>
  </wizard:errors>
  <fieldset>
    <legend></legend>
    <wizard:fields>
      <div lift:bind="wizard:line" class="control-group">
        <wizard:label>
          <label wizard:for="" class="control-label"> <wizard:bind></wizard:bind> </label>
        </wizard:label>
        <div class="controls">
          <wizard:form></wizard:form>
          <wizard:help>
            <span class="help-inline"> <wizard:bind></wizard:bind> </span>
          </wizard:help>
          <wizard:field_errors>
            <span class="help-inline">
              <ul>
                <wizard:error>
                  <li><wizard:bind></wizard:bind></li>
                </wizard:error> 
              </ul>
            </span>
          </wizard:field_errors>
        </div>
      </div>
    </wizard:fields>
    <div class="form-horizontal">
      <div class="form-actions">
        <wizard:prev></wizard:prev>
        <wizard:next></wizard:next>
        <wizard:cancel></wizard:cancel>
      </div>
    </div>
  </fieldset>
  <wizard:screen_bottom> <div><wizard:bind></wizard:bind></div> </wizard:screen_bottom>
  <wizard:wizard_bottom> <div><wizard:bind></wizard:bind></div> </wizard:wizard_bottom>
</div>