Changeset 6453
- Timestamp:
- 22 Jun 2011, 14:13:15 (13 years ago)
- Location:
- main/waeup.sirp/trunk/src/waeup/sirp/accesscodes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.sirp/trunk/src/waeup/sirp/accesscodes/accesscodes.py
r6452 r6453 58 58 def history(self): 59 59 history = IObjectHistory(self) 60 return ' <br />'.join(history.messages)60 return '||'.join(history.messages) 61 61 62 62 class AccessCodeBatch(grok.Container): -
main/waeup.sirp/trunk/src/waeup/sirp/accesscodes/browser_templates/searchpage.pt
r6450 r6453 35 35 <td tal:content="item/code">APP-1-1234567890</td> 36 36 <td tal:content="item/status">unused</td> 37 <td tal:content="structure item/history">history</td> 37 <td tal:content="structure python:item.history.replace('||','<br />')"> 38 history 39 </td> 38 40 </tr> 39 41 </tbody>
Note: See TracChangeset for help on using the changeset viewer.