summaryrefslogtreecommitdiffstats
path: root/patchwork/templates/patchwork
diff options
context:
space:
mode:
Diffstat (limited to 'patchwork/templates/patchwork')
-rw-r--r--patchwork/templates/patchwork/patch-list.html10
1 files changed, 9 insertions, 1 deletions
diff --git a/patchwork/templates/patchwork/patch-list.html b/patchwork/templates/patchwork/patch-list.html
index 675f67f..718949e 100644
--- a/patchwork/templates/patchwork/patch-list.html
+++ b/patchwork/templates/patchwork/patch-list.html
@@ -1,5 +1,6 @@
{% load person %}
{% load listurl %}
+{% load patch %}
{% load static %}
{% include "patchwork/pagination.html" %}
@@ -69,6 +70,12 @@
</th>
<th>
+ <span
+ title="{% for tag in project.tags %}{{tag.name}}{% if not forloop.last %} / {% endif %}{% endfor %}"
+ >{% for tag in project.tags %}{{tag.abbrev}}{% if not forloop.last %}/{% endif %}{% endfor %}</span>
+ </th>
+
+ <th>
{% ifequal order.name "date" %}
<a class="colactive"
href="{% listurl order=order.reversed_name %}"><img
@@ -166,6 +173,7 @@
{% endif %}
<td><a href="{% url 'patchwork.views.patch.patch' patch_id=patch.id %}"
>{{ patch.name|default:"[no subject]" }}</a></td>
+ <td style="white-space: nowrap;">{{ patch|patch_tags }}</td>
<td>{{ patch.date|date:"Y-m-d" }}</td>
<td>{{ patch.submitter|personify:project }}</td>
<td>{{ patch.delegate.username }}</td>
@@ -259,7 +267,7 @@
{% else %}
<tr>
- <td colspan="5">No patches to display</td>
+ <td colspan="6">No patches to display</td>
</tr>
{% endif %}