summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Reporting/templates/config_items/listing.html
diff options
context:
space:
mode:
authorAlexander Sulfrian <alexander.sulfrian@fu-berlin.de>2018-03-21 17:58:08 +0100
committerAlexander Sulfrian <alexander.sulfrian@fu-berlin.de>2018-03-21 18:11:44 +0100
commit483b6c8676f1b195f0b14ab54de732fbe0f5b684 (patch)
tree016d554bf1d65dda1db0493a6aa068b4ee7d990b /src/lib/Bcfg2/Reporting/templates/config_items/listing.html
parente586c4236efbb6b639895839f123cb847d69180b (diff)
downloadbcfg2-483b6c8676f1b195f0b14ab54de732fbe0f5b684.tar.gz
bcfg2-483b6c8676f1b195f0b14ab54de732fbe0f5b684.tar.bz2
bcfg2-483b6c8676f1b195f0b14ab54de732fbe0f5b684.zip
Reporting: Fix syntax of "cycle" templatetag
The backwords compatible syntax was removed in 1.10. The "new" syntax is available since 11 years [1] and was already available in django 1.0 [2]. > Support for the syntax of {% cycle %} that uses comma-separated > arguments is removed. [3] [1]: https://code.djangoproject.com/ticket/208 [2]: https://github.com/django/django/commit/09145d2e5f [3]: https://docs.djangoproject.com/en/2.0/releases/1.10/#features-removed-in-1-10
Diffstat (limited to 'src/lib/Bcfg2/Reporting/templates/config_items/listing.html')
-rw-r--r--src/lib/Bcfg2/Reporting/templates/config_items/listing.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/Bcfg2/Reporting/templates/config_items/listing.html b/src/lib/Bcfg2/Reporting/templates/config_items/listing.html
index 1ae82dab5..b8fba61ce 100644
--- a/src/lib/Bcfg2/Reporting/templates/config_items/listing.html
+++ b/src/lib/Bcfg2/Reporting/templates/config_items/listing.html
@@ -21,7 +21,7 @@
<table id='table_{{ type_name }}' class='entry_list'>
<tr style='text-align: left' ><th>Name</th><th>Count</th><th>Reason</th></tr>
{% for entry in type_data %}
- <tr class='{% cycle listview,listview_alt %}'>
+ <tr class='{% cycle 'listview' 'listview_alt' %}'>
<td><a href='{% url "reports_entry" entry.class_name entry.pk %}'>{{entry.name}}</a></td>
<td>{{entry.num_entries}}</td>
<td><a href='{% url "reports_item" entry.class_name entry.pk %}'>{{entry.short_list|join:","}}</a></td>