summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJelle van der Waa <jelle@vdwaa.nl>2019-09-14 21:54:36 +0200
committerJelle van der Waa <jelle@vdwaa.nl>2019-09-14 21:54:36 +0200
commitd298cf57c21a491a5de9a78a162e28d4c4c64626 (patch)
tree614361b717cdfbc9f6393b41d6c8c7fb5b8d377d
parent87d7131d008bfae19a1ff59f2210b77c5eced528 (diff)
downloadarchweb-d298cf57c21a491a5de9a78a162e28d4c4c64626.tar.gz
archweb-d298cf57c21a491a5de9a78a162e28d4c4c64626.zip
templates: fix displaying maintainers in signoff status
A group contains maintainers not a maintainer field, which can be multiple maintainers.
-rw-r--r--templates/devel/index.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/devel/index.html b/templates/devel/index.html
index bd907f9b..cba57210 100644
--- a/templates/devel/index.html
+++ b/templates/devel/index.html
@@ -58,7 +58,7 @@
<th>Approved</th>
<th>Signoffs</th>
<th>Packager</th>
- <th>Maintainer</th>
+ <th>Maintainer(s)</th>
</tr>
</thead>
<tbody>
@@ -84,7 +84,7 @@
{% endfor %}
</ul></td>
<td>{{ group.packager }}</td>
- <td>{{ group.maintainer }}</td>
+ <td>{{ group.maintainers|join:', ' }}</td>
</tr>
{% empty %}
<tr class="empty"><td colspan="9"><em>No packages you maintain or have packaged need signoffs</em></td></tr>