source: main/waeup.ikoba/trunk/src/waeup/ikoba/customers/browser_templates/contractaddpage.pt @ 12388

Last change on this file since 12388 was 12337, checked in by Henrik Bettermann, 10 years ago

Improve contract management. Tests will follow which show that customers can only do what they are allowed to do.

File size: 903 bytes
Line 
1<form action="." tal:attributes="action request/URL" method="post"
2      enctype="multipart/form-data" i18n:domain="waeup.ikoba">
3  <table class="form-table">
4    <tbody>
5      <tr>
6        <td class="fieldname">
7          <span i18n:translate="">Contract Type</span>:
8        </td>
9        <td>
10          <select id="contype" name="contype" size="1"
11                  class="form-control half">
12            <option tal:repeat="item view/selectable_contypes"
13                    tal:attributes="value python:item[0]">
14              <span tal:replace="python:item[1]">CONTYPE</span>
15            </option>
16          </select>
17        </td>
18      </tr>
19      <tal:widgets content="structure provider:widgets" />
20    </tbody>
21  </table>
22  <div tal:condition="view/availableActions">
23    <input tal:repeat="action view/actions"
24           tal:replace="structure action/render"
25           />
26  </div>
27</form>
Note: See TracBrowser for help on using the repository browser.