]> git.ozlabs.org Git - patchwork/blob - templates/patchwork/todo-list.html
Use django-registration infrastructure
[patchwork] / templates / patchwork / todo-list.html
1 {% extends "base.html" %}
2
3 {% load person %}
4
5 {% block title %}{{ user }}'s todo list{% endblock %}
6 {% block heading %}{{user}}'s todo list for {{ project.linkname }}{% endblock %}
7
8 {% block body %}
9
10 <p>A Patchwork Todo-list contains patches that are assigned to you, and
11 are in an "action required" state
12 ({% for state in action_required_states %}{% if forloop.last and not forloop.first %} or {% endif %}{{ state }}{% if not forloop.last and not forloop.first %}, {%endif %}{% endfor %}), and are not archived.
13 </p>
14
15 {% include "patchwork/patch-list.html" %}
16
17 {% endblock %}