blob: 40ee62e2f76e5aefbcf14e24211d9f6486d5d5d6 [file] [log] [blame]
{% 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 %}