Parent: [a29819] (diff)

Child: [ddf08c] (diff)

Download this file

grant.html    34 lines (30 with data), 1.1 kB

 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
30
31
32
33
{% extends g.theme.master %}
{% block title %}Grant{% endblock %}
{% block header %}Grant{% endblock %}
{% block content %}
<div id="grant">
<table>
<thead>
<tr>
<th>Icon</th>
<th>Award</th>
<th>Recipient</th>
<th>Delete?</th>
</tr>
</thead>
<tbody>
<tr>
<td>
{% if grant.award.icon %}
<img class="award_icon" src="icon" alt=""/>
{% endif %}
</td>
<td><a href="{{grant.award.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>
</tbody>
</table>
</div>
<a href="..">&#060;&#060; Back</a>
{% endblock %}