summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorJelle van der Waa <jelle@vdwaa.nl>2018-01-02 11:04:33 +0100
committerJelle van der Waa <jelle@vdwaa.nl>2018-04-08 12:51:19 +0200
commit8bd4c6bc4f148741df3adbb8a946bb8051a597bb (patch)
tree4bac54b6600d15d6f16c03f1ae41b5b625c9ccff /templates
parentf59caea0df0b6d5c2320097477176498889f354a (diff)
downloadarchweb-8bd4c6bc4f148741df3adbb8a946bb8051a597bb.tar.gz
archweb-8bd4c6bc4f148741df3adbb8a946bb8051a597bb.zip
templates: fix cycle syntax
According to the docs cycle takes two string arguments.
Diffstat (limited to 'templates')
-rw-r--r--templates/devel/packages.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/devel/packages.html b/templates/devel/packages.html
index faf6ebb2..c75f81eb 100644
--- a/templates/devel/packages.html
+++ b/templates/devel/packages.html
@@ -52,7 +52,7 @@
</thead>
<tbody>
{% for pkg in packages %}
- <tr class="{% cycle pkgr2,pkgr1 %} {{ pkg.arch.name }} {{ pkg.repo.name|lower }}">
+ <tr class="{% cycle 'pkgr2' 'pkgr1' %} {{ pkg.arch.name }} {{ pkg.repo.name|lower }}">
<td>{{ pkg.arch.name }}</td>
<td>{{ pkg.repo.name|capfirst }}</td>
<td>{% pkg_details_link pkg %}</td>