Changeset 7493 for main/waeup.sirp/trunk/src/waeup/sirp/applicants
- Timestamp:
- 20 Jan 2012, 09:26:25 (13 years ago)
- Location:
- main/waeup.sirp/trunk/src/waeup/sirp/applicants
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.sirp/trunk/src/waeup/sirp/applicants/browser.py
r7489 r7493 65 65 def update(self): 66 66 super(ApplicantsRootPage, self).update() 67 datatable.need()67 #datatable.need() 68 68 return 69 69 … … 227 227 @property 228 228 def label(self): 229 return " Applicants Container:%s" % self.context.title229 return "%s" % self.context.title 230 230 231 231 class ApplicantsContainerManageFormPage(SIRPEditFormPage): -
main/waeup.sirp/trunk/src/waeup/sirp/applicants/browser_templates/applicantsrootpage.pt
r7464 r7493 1 <table class="display dataTable">1 <table> 2 2 <thead> 3 3 <tr> 4 <th>Year</th><th>Code</th><th>Title</th> 4 <th>Year</th><th>Code</th><th>Title</th><th>Application Period</th> 5 5 </tr> 6 6 </thead> … … 9 9 <td tal:content="entry/year">Year 10 10 </td> 11 <td tal:content="entry/__name__">Code 12 </td> 11 13 <td> 12 14 <a href="" 13 15 tal:attributes="href python:view.url(entry)" 14 tal:content="entry/ __name__">Code</a>16 tal:content="entry/title">Title</a> 15 17 </td> 16 <td tal:content="entry/title">Title 18 <td> 19 <span tal:content="python: layout.formatDate(entry.startdate)">Start</span> 20 - 21 <span tal:content="python: layout.formatDate(entry.enddate)">End</span> 17 22 </td> 18 23 </tr>
Note: See TracChangeset for help on using the changeset viewer.