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

<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>
  <div>
    <wizard:fields>
      <table>
        <tr lift:bind="wizard:line" class="row">
          <td class="form-name">
            <wizard:label>
              <label wizard:for="">
                <wizard:bind></wizard:bind>
              </label>
            </wizard:label>
            <wizard:help>
              <span>
                <wizard:bind></wizard:bind>
              </span>
            </wizard:help>
            <wizard:field_errors>
              <ul>
                <wizard:error>
                  <li><wizard:bind></wizard:bind></li>
                </wizard:error> 
              </ul>
            </wizard:field_errors>
          </td>
          <td class="form-value">
            <wizard:form></wizard:form>
          </td>
        </tr>
      </table>
    </wizard:fields>
  </div>
  <div>
    <table>
      <tr> 
        <td><wizard:prev></wizard:prev></td>
        <td><wizard:cancel></wizard:cancel></td>
        <td><wizard:next></wizard:next></td>
      </tr>
    </table>
  </div>
  <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>