Changeset 6455
- Timestamp:
- 22 Jun 2011, 21:34:46 (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/browser.py
r6451 r6455 4 4 from datetime import datetime 5 5 from hurry.workflow.interfaces import InvalidTransitionError 6 from waeup.sirp.browser.resources import datatable 6 7 from waeup.sirp.browser import WAeUPPage, WAeUPAddFormPage 7 8 from waeup.sirp.browser.breadcrumbs import Breadcrumb … … 116 117 117 118 def update(self, *args, **kw): 119 datatable.need() 118 120 form = self.request.form 119 121 self.hitlist = [] -
main/waeup.sirp/trunk/src/waeup/sirp/accesscodes/browser_templates/searchpage.pt
r6453 r6455 21 21 <input type="hidden" name="old_searchtype" 22 22 tal:attributes="value view/searchtype" /> 23 <table class = "zebra">23 <table class="display dataTableManage"> 24 24 <thead> 25 25 <tr> 26 26 <th> </th> 27 <th >Serial</th><th>AC</th><th>Status</th><th>History</th>27 <th width="50px">Serial</th><th>AC</th><th>Status</th><th>History</th> 28 28 </tr> 29 29 </thead> … … 41 41 </tbody> 42 42 </table> 43 44 <input type="submit" name="disable" value="Disable ACs" /> 45 <input type="submit" name="enable" value="Enable ACs" /> 43 <div id="actionsView"> 44 <input type="submit" name="disable" value="Disable ACs" /> 45 <input type="submit" name="enable" value="Enable ACs" /> 46 </div> 46 47 47 48 </div>
Note: See TracChangeset for help on using the changeset viewer.