Changeset 12344 for main/waeup.ikoba/trunk
- Timestamp:
- 30 Dec 2014, 15:40:41 (10 years ago)
- Location:
- main/waeup.ikoba/trunk/src/waeup/ikoba/customers/browser_templates
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.ikoba/trunk/src/waeup/ikoba/customers/browser_templates/contractsmanagepage.pt
r12337 r12344 23 23 <td> 24 24 <a tal:attributes="href python: view.url(contract)"> 25 <span tal:content=" contract/contract_id">CONID</span></a>25 <span tal:content="python: contract.contract_id[:6]">CONID</span>...</a> 26 26 </td> 27 27 <td> -
main/waeup.ikoba/trunk/src/waeup/ikoba/customers/browser_templates/documentsmanagepage.pt
r12056 r12344 14 14 </thead> 15 15 <tbody> 16 <tr tal:repeat=" clcontext/values">16 <tr tal:repeat="document context/values"> 17 17 <td> 18 18 <input type="checkbox" 19 19 name="val_id" 20 tal:attributes="value cl/__name__"21 tal:condition="python: not view.unremovable( cl)" />20 tal:attributes="value document/__name__" 21 tal:condition="python: not view.unremovable(document)" /> 22 22 </td> 23 23 <td> 24 <a tal:attributes="href python: view.url( cl)">25 <span tal:content=" cl/document_id">DOCID</span></a>24 <a tal:attributes="href python: view.url(document)"> 25 <span tal:content="python: document.document_id[:6]">DOCID</span>...</a> 26 26 </td> 27 27 <td> 28 <span tal:content=" cl/title">TITLE</span>28 <span tal:content="document/title">TITLE</span> 29 29 </td> 30 30 <td> 31 <span tal:content=" cl/translated_class_name">CLASSNAME</span>31 <span tal:content="document/translated_class_name">CLASSNAME</span> 32 32 </td> 33 33 <td> 34 <span tal:content=" cl/translated_state">STATE</span>34 <span tal:content="document/translated_state">STATE</span> 35 35 </td> 36 36 <td> 37 <span tal:content=" cl/formatted_transition_date">37 <span tal:content="document/formatted_transition_date"> 38 38 LASTTRANSITIONDATE 39 39 </span>
Note: See TracChangeset for help on using the changeset viewer.