aboutsummaryrefslogtreecommitdiff
path: root/app/templates/todo.html
diff options
context:
space:
mode:
Diffstat (limited to 'app/templates/todo.html')
-rw-r--r--app/templates/todo.html54
1 files changed, 0 insertions, 54 deletions
diff --git a/app/templates/todo.html b/app/templates/todo.html
deleted file mode 100644
index b20f26c..0000000
--- a/app/templates/todo.html
+++ /dev/null
@@ -1,54 +0,0 @@
-{% extends "base.html" %}
-
-{% block title %}
-{{ title }}
-{% endblock %}
-
-{% block content %}
- {% if canApproveNew %}
- <h2>Packages Awaiting Approval</h2>
- <ul>
- {% for p in packages %}
- <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 canApproveScn %}
- <h2>Screenshots Awaiting Approval</h2>
- <ul>
- {% for s in screenshots %}
- <li>
- <a href="{{ s.getEditURL() }}">{{ s.title }}</a>
- on
- <a href="{{ s.package.getDetailsURL() }}">
- {{ s.package.title }} by {{ s.package.author.display_name }}
- </a>
- </li>
- {% else %}
- <li><i>No screenshots 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 %}