summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Reporting/templates/config_items
diff options
context:
space:
mode:
authorSol Jerome <sol.jerome@gmail.com>2013-05-06 15:16:34 -0500
committerSol Jerome <sol.jerome@gmail.com>2013-05-06 15:16:34 -0500
commitfd993228d36c166593285a8ebbd2e6fb45c36d4d (patch)
tree61df095dfe4790da271d8137c2eb21209b24ea68 /src/lib/Bcfg2/Reporting/templates/config_items
parentb380b0d1b9c135069d91a19a618f617b75d7f80c (diff)
downloadbcfg2-fd993228d36c166593285a8ebbd2e6fb45c36d4d.tar.gz
bcfg2-fd993228d36c166593285a8ebbd2e6fb45c36d4d.tar.bz2
bcfg2-fd993228d36c166593285a8ebbd2e6fb45c36d4d.zip
Add url loads for all templates
Signed-off-by: Sol Jerome <sol.jerome@gmail.com>
Diffstat (limited to 'src/lib/Bcfg2/Reporting/templates/config_items')
-rw-r--r--src/lib/Bcfg2/Reporting/templates/config_items/common.html1
-rw-r--r--src/lib/Bcfg2/Reporting/templates/config_items/item.html4
-rw-r--r--src/lib/Bcfg2/Reporting/templates/config_items/listing.html4
3 files changed, 9 insertions, 0 deletions
diff --git a/src/lib/Bcfg2/Reporting/templates/config_items/common.html b/src/lib/Bcfg2/Reporting/templates/config_items/common.html
index 0dbd52156..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 %}
diff --git a/src/lib/Bcfg2/Reporting/templates/config_items/item.html b/src/lib/Bcfg2/Reporting/templates/config_items/item.html
index c15a85e0a..b03d48045 100644
--- a/src/lib/Bcfg2/Reporting/templates/config_items/item.html
+++ b/src/lib/Bcfg2/Reporting/templates/config_items/item.html
@@ -1,6 +1,10 @@
{% extends "base.html" %}
{% load split %}
{% load syntax_coloring %}
+{% comment %}
+This is needed for Django versions less than 1.5
+{% endcomment %}
+{% load url from future %}
{% block title %}Bcfg2 - Element Details{% endblock %}
diff --git a/src/lib/Bcfg2/Reporting/templates/config_items/listing.html b/src/lib/Bcfg2/Reporting/templates/config_items/listing.html
index fb10bb020..0e4812e85 100644
--- a/src/lib/Bcfg2/Reporting/templates/config_items/listing.html
+++ b/src/lib/Bcfg2/Reporting/templates/config_items/listing.html
@@ -1,5 +1,9 @@
{% extends "base-timeview.html" %}
{% load bcfg2_tags %}
+{% comment %}
+This is needed for Django versions less than 1.5
+{% endcomment %}
+{% load url from future %}
{% block title %}Bcfg2 - Element Listing{% endblock %}