summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJelle van der Waa <jelle@archlinux.org>2019-06-15 16:20:54 +0200
committerJelle van der Waa <jelle@archlinux.org>2019-06-15 16:20:54 +0200
commit555beff6f547da9371924e8676ddfff25305558d (patch)
treee0901eee5ae1540c12e29794825d5ebb0378ebed
parent660f5851324b425707359b49445540879568c656 (diff)
downloadarchweb-555beff6f547da9371924e8676ddfff25305558d.tar.gz
archweb-555beff6f547da9371924e8676ddfff25305558d.zip
templates: fix colspan length
There where two extra columns added but the colspan was not increased. closes: #220
-rw-r--r--templates/devel/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/devel/index.html b/templates/devel/index.html
index 9588150b..89799602 100644
--- a/templates/devel/index.html
+++ b/templates/devel/index.html
@@ -145,7 +145,7 @@
<td>{{ group.maintainer }}</td>
</tr>
{% empty %}
- <tr class="empty"><td colspan="7"><em>No packages you maintain or have packaged need signoffs</em></td></tr>
+ <tr class="empty"><td colspan="9"><em>No packages you maintain or have packaged need signoffs</em></td></tr>
{% endfor %}
</tbody>
</table>