1 | <%inherit file="/base.mako"/> |
---|
2 | <%namespace file="/message.mako" import="render_msg" /> |
---|
3 | |
---|
4 | <h2>History of Sequencing Request "${request.name}"</h2> |
---|
5 | <ul class="manage-table-actions"> |
---|
6 | <li> |
---|
7 | <a class="action-button" href="${h.url_for( controller='requests_common', action='manage_request', cntrller=cntrller, id=trans.security.encode_id( request.id ) )}">Browse this request</a> |
---|
8 | </li> |
---|
9 | <li> |
---|
10 | <a class="action-button" href="${h.url_for( controller=cntrller, action='browse_requests' )}">Browse all requests</a> |
---|
11 | </li> |
---|
12 | </ul> |
---|
13 | |
---|
14 | %if message: |
---|
15 | ${render_msg( message, status )} |
---|
16 | %endif |
---|
17 | |
---|
18 | <div class="toolForm"> |
---|
19 | <table class="grid"> |
---|
20 | <thead> |
---|
21 | <tr> |
---|
22 | <th>State</th> |
---|
23 | <th>Last Update</th> |
---|
24 | <th>Comments</th> |
---|
25 | </tr> |
---|
26 | </thead> |
---|
27 | <tbody> |
---|
28 | %for state, updated, comments in events_list: |
---|
29 | <tr class="libraryRow libraryOrFolderRow" id="libraryRow"> |
---|
30 | <td><b><a>${state}</a></b></td> |
---|
31 | <td><a>${updated}</a></td> |
---|
32 | <td><a>${comments}</a></td> |
---|
33 | </tr> |
---|
34 | %endfor |
---|
35 | </tbody> |
---|
36 | </table> |
---|
37 | </div> |
---|