{% 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"/>
{% 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=".."><< Back</a>
{% endblock %}