diff options
author | Dan McGee <dan@archlinux.org> | 2012-03-23 20:19:34 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2012-03-23 20:19:34 -0500 |
commit | 822898e57bc6d4e008ef58da309857e9ef8c98e6 (patch) | |
tree | 1af0836c927b87e2249628d47cdfefe77c3b18fd /templates/visualize/index.html | |
parent | ea87160c397fe1daf63851f0ed0be146bea79196 (diff) | |
parent | 8e10699d53281be53c88a3695de6aa496e084dc6 (diff) |
Merge branch 'django14'
Conflicts:
templates/releng/result_section.html
Diffstat (limited to 'templates/visualize/index.html')
-rw-r--r-- | templates/visualize/index.html | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/templates/visualize/index.html b/templates/visualize/index.html index a7727b1f..a7855eb2 100644 --- a/templates/visualize/index.html +++ b/templates/visualize/index.html @@ -1,4 +1,5 @@ {% extends "base.html" %} +{% load url from future %} {% block title %}Arch Linux - Visualizations{% endblock %} @@ -34,11 +35,11 @@ <script type="text/javascript"> $(document).ready(function() { var orderings = { - "repo": { url: "{% url visualize-byrepo %}", color_attr: "repo" }, - "arch": { url: "{% url visualize-byarch %}", color_attr: "arch" }, + "repo": { url: "{% url 'visualize-byrepo' %}", color_attr: "repo" }, + "arch": { url: "{% url 'visualize-byarch' %}", color_attr: "arch" }, }; packages_treemap("#visualize-archrepo", orderings, "repo"); - developer_keys("#visualize-keys", "{% url visualize-pgp_keys %}"); + developer_keys("#visualize-keys", "{% url 'visualize-pgp_keys' %}"); }); </script> {% endblock %} |