##// END OF EJS Templates
exceptions-store: show number of exceptions.
marcink -
r2910:a9c53180 default
parent child Browse files
Show More
@@ -34,18 +34,22 b''
34 <div class="panel-body">
34 <div class="panel-body">
35 <table class="rctable">
35 <table class="rctable">
36 <tr>
36 <tr>
37 <th>#</th>
37 <th>Exception ID</th>
38 <th>Exception ID</th>
38 <th>Date</th>
39 <th>Date</th>
39 <th>App Type</th>
40 <th>App Type</th>
40 <th>Exc Type</th>
41 <th>Exc Type</th>
41 </tr>
42 </tr>
43 <% cnt = len(c.exception_list)%>
42 % for tb in c.exception_list:
44 % for tb in c.exception_list:
43 <tr>
45 <tr>
46 <td>${cnt}</td>
44 <td><a href="${h.route_path('admin_settings_exception_tracker_show', exception_id=tb['exc_id'])}"><code>${tb['exc_id']}</code></a></td>
47 <td><a href="${h.route_path('admin_settings_exception_tracker_show', exception_id=tb['exc_id'])}"><code>${tb['exc_id']}</code></a></td>
45 <td>${h.format_date(tb['exc_utc_date'])}</td>
48 <td>${h.format_date(tb['exc_utc_date'])}</td>
46 <td>${tb['app_type']}</td>
49 <td>${tb['app_type']}</td>
47 <td>${tb['exc_type']}</td>
50 <td>${tb['exc_type']}</td>
48 </tr>
51 </tr>
52 <% cnt -=1 %>
49 % endfor
53 % endfor
50 </table>
54 </table>
51 </div>
55 </div>
General Comments 0
You need to be logged in to leave comments. Login now