source: main/waeup.ikoba/trunk/src/waeup/ikoba/customers/browser_templates/contractsmanagepage.pt @ 17929

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

Remove ellipses.

File size: 1.7 KB
Line 
1<form action="." tal:attributes="action request/URL" method="POST"
2      i18n:domain="waeup.ikoba" enctype="multipart/form-data">
3
4  <table class="ikoba-data-table dataTableManage">
5    <thead>
6    <tr>
7      <th tal:condition="view/edit_contracts_allowed">&nbsp;</th>
8      <th i18n:translate="">Id</th>
9      <th i18n:translate="">Title</th>
10      <th i18n:translate="">Type</th>
11      <th i18n:translate="">State</th>
12      <th i18n:translate="">Last Transition</th>
13    </tr>
14    </thead>
15    <tbody>
16      <tr tal:repeat="contract context/values">
17         <td tal:condition="view/edit_contracts_allowed">
18          <input type="checkbox"
19                 name="val_id"
20                 tal:attributes="value contract/__name__"
21           tal:condition="python: view.remove_contract_allowed(contract)" />
22        </td>
23        <td>
24          <a tal:attributes="href python: view.url(contract)">
25            <span tal:content="python: contract.contract_id[:9]">CONID</span>
26          </a>
27        </td>
28        <td>
29          <span tal:content="contract/title">TITLE</span>
30        </td>
31        <td>
32          <span tal:content="contract/translated_class_name">CLASSNAME</span>
33        </td>
34        <td>
35          <span tal:content="contract/translated_state">STATE</span>
36        </td>
37        <td>
38          <span tal:content="contract/formatted_transition_date">
39              LASTTRANSITIONDATE
40          </span>
41        </td>
42      </tr>
43    </tbody>
44  </table>
45
46  <div tal:condition="python: view.availableActions and view.edit_contracts_allowed">
47    <span tal:repeat="action view/actions"
48          tal:omit-tag="">
49      <input tal:replace="structure action/render"/>
50    </span>
51  </div>
52</form>
Note: See TracBrowser for help on using the repository browser.