src/main/webapp/templates-hidden/wizard-all.html
author Tomas Zeman <tzeman@volny.cz>
Fri, 10 Feb 2012 09:53:09 +0100
changeset 15 995184977e9b
child 17 2be6a0d25da5
permissions -rw-r--r--
a3e3bd30f0d19526 Contact UI

<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>
        <tbody>
          <tr lift:bind="wizard:line">
            <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>
        </tbody>
      </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>