Child: [a29819] (diff)

Download this file

grants.html    30 lines (26 with data), 932 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
{% extends g.theme.master %}
{% block title %}Grants List{% endblock %}
{% block header %}Grants List{% endblock %}
{% block content %}
<div id="award_list">
<table border="1">
<thead>
<tr>
<th>Award</th>
<th>Recipient</th>
<th>Delete?</th>
</tr>
</thead>
<tbody>
{% for grant in grants %}
<tr>
<td><a href="{{grant.longurl()}}">{{grant.award.short}}</a></td>
<td><a href="{{grant.granted_to_project.url()}}">{{grant.granted_to_project.shortname}}</a></td>
<td><a href="{{grant.longurl()}}/revoke">[X]</a></td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
<a href="..">&#060;&#060; Back</a>
{% endblock %}