summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Reporting/templates/config_items/common.html
diff options
context:
space:
mode:
authorSol Jerome <sol.jerome@gmail.com>2013-06-05 10:43:43 -0500
committerSol Jerome <sol.jerome@gmail.com>2013-06-05 10:43:43 -0500
commit8d561f220c29278b2e81484a38bc12d729baa701 (patch)
tree0b5db1b4001c2505de254e3b0e7f81563f6f1818 /src/lib/Bcfg2/Reporting/templates/config_items/common.html
parent484d8100cdcdfa316cbf9568928697044cc331b8 (diff)
parentfd993228d36c166593285a8ebbd2e6fb45c36d4d (diff)
downloadbcfg2-8d561f220c29278b2e81484a38bc12d729baa701.tar.gz
bcfg2-8d561f220c29278b2e81484a38bc12d729baa701.tar.bz2
bcfg2-8d561f220c29278b2e81484a38bc12d729baa701.zip
Merge branch 'django-1.5' into maint
Diffstat (limited to 'src/lib/Bcfg2/Reporting/templates/config_items/common.html')
-rw-r--r--src/lib/Bcfg2/Reporting/templates/config_items/common.html5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/lib/Bcfg2/Reporting/templates/config_items/common.html b/src/lib/Bcfg2/Reporting/templates/config_items/common.html
index 57191ec39..91f37d7dc 100644
--- a/src/lib/Bcfg2/Reporting/templates/config_items/common.html
+++ b/src/lib/Bcfg2/Reporting/templates/config_items/common.html
@@ -1,5 +1,6 @@
{% extends "base-timeview.html" %}
{% load bcfg2_tags %}
+{% load url from future %}
{% block title %}Bcfg2 - Common Problems{% endblock %}
@@ -29,9 +30,9 @@
{% for item in type_list %}
<tr class='{% cycle listview,listview_alt %}'>
<td>{{ item.ENTRY_TYPE }}</td>
- <td><a href="{% url reports_entry item.class_name, item.pk %}">{{ item.name }}</a></td>
+ <td><a href='{% url "reports_entry" item.class_name item.pk %}'>{{ item.name }}</a></td>
<td>{{ item.num_entries }}</td>
- <td><a href="{% url reports_item item.ENTRY_TYPE, item.pk %}">{{ item.short_list|join:"," }}</a></td>
+ <td><a href='{% url "reports_item" item.ENTRY_TYPE item.pk %}'>{{ item.short_list|join:"," }}</a></td>
</tr>
{% endfor %}
</table>