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.html25
1 files changed, 0 insertions, 25 deletions
diff --git a/templates/patchwork/list.html b/templates/patchwork/list.html
deleted file mode 100644
index 654fe8c..0000000
--- a/templates/patchwork/list.html
+++ /dev/null
@@ -1,25 +0,0 @@
-{% 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 %}