aboutsummaryrefslogtreecommitdiff
path: root/app/templates/todo.html
blob: 35aee9acd0bc72aaa9ad605fbc7e4e9a3619f2b7 (plain)
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
36
37
{% extends "base.html" %}

{% block title %}
{{ title }}
{% endblock %}

{% block content %}
	{% if canApproveNew %}
		<h2>Packages Awaiting Approval</h2>
		<ul>
			{% for p in approve_new %}
				<li><a href="{{ p.getDetailsURL() }}">
					{{ p.title }} by {{ p.author.display_name }}
				</a></li>
			{% else %}
				<li><i>No packages need reviewing.</i></ul>
			{% endfor %}
		</ul>
	{% endif %}

	{% if canApproveRel %}
		<h2>Releases Awaiting Approval</h2>
		<ul>
			{% for r in releases %}
				<li>
					<a href="{{ r.getEditURL() }}">{{ r.title }}</a>
					on
					<a href="{{ r.package.getDetailsURL() }}">
						{{ r.package.title }} by {{ r.package.author.display_name }}
					</a>
				</li>
			{% else %}
				<li><i>No releases need reviewing.</i></ul>
			{% endfor %}
		</ul>
	{% endif %}
{% endblock %}