summaryrefslogtreecommitdiffstats
path: root/templates/patchwork/todo-list.html
blob: b3019017e3cf8389ac1d5ba181d395091638a236 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{% extends "base.html" %}

{% load person %}

{% block title %}{{ user }}'s todo list{% endblock %}
{% block heading %}{{user}}'s todo list for {{ project.linkname }}{% endblock %}

{% block body %}

<p>A Patchwork Todo-list contains patches that are assigned to you, and
are in an "action required" state
({% 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.
</p>

{% include "patchwork/patch-list.html" %}

{% endblock %}