aboutsummaryrefslogtreecommitdiffstats
path: root/templates/list.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/list.html')
-rw-r--r--templates/list.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/list.html b/templates/list.html
index 34e3169..34e28d3 100644
--- a/templates/list.html
+++ b/templates/list.html
@@ -1,7 +1,7 @@
{% extends "base.html" %}
{% block page_title %}
- {{ label }} Bugs
+ {{ label }}
{% endblock %}
{% block content %}
@@ -15,9 +15,9 @@
{% for bug in bugs %}
<tr>
<td>{{ bd.bug_shortname(bug) }}</td>
- <td>{{ bug.summary }}</td>
+ <td>{{ bug.summary|e|truncate(60) }}</td>
<td>{{ bug.status }}</td>
- <td>{{ bug.assigned }}</td>
+ <td>{{ bug.assigned|striptags }}</td>
</tr>
{% endfor %}
</table>