diff options
Diffstat (limited to 'app/templates/todo.html')
| -rw-r--r-- | app/templates/todo.html | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/app/templates/todo.html b/app/templates/todo.html index 35aee9a..b20f26c 100644 --- a/app/templates/todo.html +++ b/app/templates/todo.html @@ -8,7 +8,7 @@ {% if canApproveNew %} <h2>Packages Awaiting Approval</h2> <ul> - {% for p in approve_new %} + {% for p in packages %} <li><a href="{{ p.getDetailsURL() }}"> {{ p.title }} by {{ p.author.display_name }} </a></li> @@ -18,6 +18,23 @@ </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> |
