source: main/waeup.kofa/trunk/src/waeup/kofa/students/browser_templates/onlinepaymentaddform.pt @ 11954

Last change on this file since 11954 was 11254, checked in by uli, 11 years ago

Merge changes from uli-diazo-themed back into trunk. If this works, then a miracle happened.

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