summaryrefslogtreecommitdiffstats
path: root/templates/patchwork/list.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/patchwork/list.html')
-rw-r--r--templates/patchwork/list.html24
1 files changed, 24 insertions, 0 deletions
diff --git a/templates/patchwork/list.html b/templates/patchwork/list.html
new file mode 100644
index 0000000..755c047
--- /dev/null
+++ b/templates/patchwork/list.html
@@ -0,0 +1,24 @@
+{% extends "patchwork/base.html" %}
+
+{% load person %}
+
+{% block title %}{{project.name}}{% endblock %}
+{% block heading %}{{project.name}}{% endblock %}
+
+{% block body %}
+
+<h2>Incoming patches</h2>
+
+{% if errors %}
+<p>The following error{{ errors|length|pluralize:" was,s were" }} encountered
+while updating patches:</p>
+<ul class="errorlist">
+{% for error in errors %}
+ <li>{{ error }}</li>
+{% endfor %}
+</ul>
+{% endif %}
+
+{% include "patchwork/patch-list.html" %}
+
+{% endblock %}