]> git.ozlabs.org Git - patchwork/blobdiff - templates/patchwork/list.html
Move to a more recent django project structure
[patchwork] / templates / patchwork / list.html
diff --git a/templates/patchwork/list.html b/templates/patchwork/list.html
deleted file mode 100644 (file)
index 654fe8c..0000000
+++ /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 %}