Parent: [59a579] (diff)

Download this file

site_admin_cpa_stats.html    30 lines (27 with data), 616 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 'allura:templates/site_admin.html' %}
{% block content %}
<form method="GET" action="cpa_stats">
<h1>CPAs since <input type="text" name="since" value="{{since.strftime('%m/%d/%Y')}}"></h1>
</form>
<table>
<thead>
<tr>
<th>Tool Name</th>
<th>Class Name</th>
<th>Create</th>
<th>Modify</th>
<th>Delete</th>
</tr>
</thead>
{% for r in stats %}
<tr>
<td>{{r.tool_name}}</td>
<td>{{r.class_name}}</td>
<td>{{r.create}}</td>
<td>{{r.modify}}</td>
<td>{{r.delete}}</td>
</tr>
{% endfor %}
</table>
{% endblock %}