summaryrefslogtreecommitdiffstats
path: root/templates/patchwork/patchlist.html
diff options
context:
space:
mode:
authorGuilherme Salgado <guilherme.salgado@linaro.org>2011-02-23 06:34:40 +0000
committerJeremy Kerr <jk@ozlabs.org>2011-03-08 15:07:33 +0800
commitf7a3c5dff0da19e6bd737c51187a1f5aa7373c67 (patch)
tree416a2857c6389c85a057a2a9f16b0a8eb67eef4d /templates/patchwork/patchlist.html
parent5d56a58406cbc06012d1f1c994be4b5118ecda9c (diff)
downloadpatchwork-f7a3c5dff0da19e6bd737c51187a1f5aa7373c67.tar.bz2
patchwork-f7a3c5dff0da19e6bd737c51187a1f5aa7373c67.tar.xz
Remove unused templates and some code for processing them
These seem to be what was used in the past to archive/unarchive and delete patches. Signed-off-by: Guilherme Salgado <guilherme.salgado@linaro.org> Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
Diffstat (limited to 'templates/patchwork/patchlist.html')
-rw-r--r--templates/patchwork/patchlist.html37
1 files changed, 0 insertions, 37 deletions
diff --git a/templates/patchwork/patchlist.html b/templates/patchwork/patchlist.html
deleted file mode 100644
index d6709cd..0000000
--- a/templates/patchwork/patchlist.html
+++ /dev/null
@@ -1,37 +0,0 @@
-
-{% load person %}
-
-{% if patches %}
-<form method="post">
-{% csrf_token %}
-<table class="patchlist">
- <tr>
- {% if patchform %}
- <th/>
- {% endif %}
- <th><a class="colinactive" href="list?person=846&order=patch">Patch</a></th>
- <th><a class="colinactive" href="list?person=846&order=date">Date</a></th>
- <th><a class="colinactive" href="list?person=846&order=submitter">Submitter</a></th>
- <th><a class="colinactive" href="list?person=846&order=state">State</a></th>
- </tr>
- {% for patch in patches %}
- <tr>
- {% if patchform %}
- <td>
- <input type="hidden" name="patch_ids" value="{{ patch.id }}"/>
- <input type="checkbox" name="patch-{{patch.id}}">
- </td>
- {% endif %}
- <td><a href="{% url patchwork.views.patch.patch patch_id=patch.id %}">{{ patch.name }}</a></td>
- <td>{{ patch.date|date:"Y-m-d" }}</td>
- <td>{{ patch.submitter|personify }}</td>
- <td>{{ patch.state }}</td>
- </tr>
- {% endfor %}
-</table>
-
-{% include "patchwork/patch-form.html" %}
-
-{% else %}
- <p>No patches to display</p>
-{% endif %}