|
a/Allura/allura/templates/awards.html |
|
b/Allura/allura/templates/awards.html |
1 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
1 |
{% extends 'jinja_master/master.html' %}
|
2 |
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
|
3 |
<html xmlns="http://www.w3.org/1999/xhtml"
|
|
|
4 |
xmlns:py="http://genshi.edgewall.org/"
|
|
|
5 |
xmlns:xi="http://www.w3.org/2001/XInclude">
|
|
|
6 |
|
2 |
|
7 |
<xi:include href="master.html" />
|
3 |
{% block title %}Award List{% endblock %}
|
8 |
|
4 |
|
9 |
<head>
|
5 |
{% block header %}Current Awards{% endblock %}
|
10 |
<meta content="text/html; charset=UTF-8" http-equiv="content-type" py:replace="''"/>
|
|
|
11 |
<title>Award List</title>
|
|
|
12 |
</head>
|
|
|
13 |
|
6 |
|
14 |
<body>
|
7 |
{% block content %}
|
15 |
<h1 class="title">Current Awards</h1>
|
8 |
<br /><br />
|
16 |
<div class="content">
|
|
|
17 |
<div class="row">
|
|
|
18 |
<div class="column grid_12">
|
|
|
19 |
<div id="award_list">
|
9 |
<div id="award_list">
|
20 |
<table border="1">
|
10 |
<table border="1">
|
21 |
<thead>
|
11 |
<thead>
|
22 |
<tr>
|
12 |
<tr>
|
23 |
<th>Icon</th>
|
13 |
<th>Icon</th>
|
|
... |
|
... |
25 |
<th>Description</th>
|
15 |
<th>Description</th>
|
26 |
<th>Delete?</th>
|
16 |
<th>Delete?</th>
|
27 |
</tr>
|
17 |
</tr>
|
28 |
</thead>
|
18 |
</thead>
|
29 |
<tbody>
|
19 |
<tbody>
|
30 |
<py:for each="award in awards">
|
20 |
{% for award in awards %}
|
31 |
<tr>
|
21 |
<tr>
|
32 |
<td>
|
22 |
<td>
|
33 |
<py:if test="award.icon">
|
23 |
{% if award.icon %}
|
34 |
<img class="award_icon" src="${award.url()}/icon"/>
|
24 |
<img class="award_icon" src="{{award.url()}}/icon"/>
|
35 |
</py:if>
|
25 |
{% endif %}
|
36 |
</td>
|
26 |
</td>
|
37 |
<td><a href="${award.longurl()}">${award.short}</a></td>
|
27 |
<td><a href="{{award.longurl()}}">{{award.short}}</a></td>
|
38 |
<td>$award.full</td>
|
28 |
<td>{{award.full}}</td>
|
39 |
<td><a href="${award.longurl()}/delete">[X]</a></td>
|
29 |
<td><a href="{{award.longurl()}}/delete">[X]</a></td>
|
40 |
</tr>
|
30 |
</tr>
|
41 |
</py:for>
|
31 |
{% endfor %}
|
42 |
</tbody>
|
32 |
</tbody>
|
43 |
</table>
|
33 |
</table>
|
44 |
</div>
|
34 |
</div>
|
45 |
<a href=".."><< Back</a>
|
35 |
<a href=".."><< Back</a>
|
46 |
</div>
|
36 |
{% endblock %}
|
47 |
</div>
|
|
|
48 |
</div>
|
|
|
49 |
</body>
|
|
|
50 |
</html>
|
|
|