summaryrefslogtreecommitdiffstats
path: root/patchwork/templates/patchwork/list.html
diff options
context:
space:
mode:
Diffstat (limited to 'patchwork/templates/patchwork/list.html')
-rw-r--r--patchwork/templates/patchwork/list.html25
1 files changed, 25 insertions, 0 deletions
diff --git a/patchwork/templates/patchwork/list.html b/patchwork/templates/patchwork/list.html
new file mode 100644
index 0000000..654fe8c
--- /dev/null
+++ b/patchwork/templates/patchwork/list.html
@@ -0,0 +1,25 @@
+{% extends "base.html" %}
+
+{% load person %}
+{% load static %}
+
+{% 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 %}