Child: [59a579] (diff)

Download this file

site_admin_cpa_stats.html    30 lines (27 with data), 537 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{% set page="cpa_stats" %}
{% extends 'site_admin.html' %}
{% block content %}
<form method="GET" action="cpa_stats">
<h1>CPAs since <input name="since" value="{{since.strftime('%m/%d/%Y')}}"></h1>
</form>
<table>
<thead>
<tr>
<th>Tool Name
<th>Class Name
<th>Create
<th>Modify
<th>Delete
</tr>
</thead>
{% for r in stats %}
<tr>
<td>{{r.tool_name}}
<td>{{r.class_name}}
<td>{{r.create}}
<td>{{r.modify}}
<td>{{r.delete}}
</tr>
{% endfor %}
</table>
{% endblock %}