Parent: [462c18] (diff)

Child: [2cecf8] (diff)

Download this file

awards.html    36 lines (32 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
34
35
{% extends g.theme.master %}
{% block title %}Award List{% endblock %}
{% block header %}Current Awards{% endblock %}
{% block content %}
<div id="award_list">
<table>
<thead>
<tr>
<th>Icon</th>
<th>Abbreviation</th>
<th>Description</th>
<th>Delete?</th>
</tr>
</thead>
<tbody>
{% for award in awards %}
<tr>
<td>
{% if award.icon %}
<img class="award_icon" src="{{award.url()}}/icon"/>
{% endif %}
</td>
<td><a href="{{award.longurl()}}">{{award.short}}</a></td>
<td>{{award.full}}</td>
<td><a href="{{award.longurl()}}/delete">[X]</a></td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
<a href="..">&#060;&#060; Back</a>
{% endblock %}