diff options
author | Dan McGee <dan@archlinux.org> | 2012-03-24 02:09:38 +0100 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2012-03-24 02:09:38 +0100 |
commit | 8e10699d53281be53c88a3695de6aa496e084dc6 (patch) | |
tree | c3dc570d663153f2a54fb92b0c5be04949b72515 /templates/releng/iso_overview.html | |
parent | 90e08b4863dfaecafee5b151478bda4513b12e85 (diff) | |
download | archweb-8e10699d53281be53c88a3695de6aa496e084dc6.tar.gz archweb-8e10699d53281be53c88a3695de6aa496e084dc6.tar.xz |
Use 'url from future' everywhere
The old-style url template tag disappears in Django 1.5, so we can and
should convert to the new-style tag now.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'templates/releng/iso_overview.html')
-rw-r--r-- | templates/releng/iso_overview.html | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/templates/releng/iso_overview.html b/templates/releng/iso_overview.html index 5a4445b..76479c5 100644 --- a/templates/releng/iso_overview.html +++ b/templates/releng/iso_overview.html @@ -1,10 +1,11 @@ {% extends "base.html" %} +{% load url from future %} {% block content %} <div class="box"> <h2>Failures and Successes for Testing ISOs</h2> - <p><a href="{% url releng-test-overview %}">Go back to testing results</a></p> + <p><a href="{% url 'releng-test-overview' %}">Go back to testing results</a></p> <table id="releng-result" class="results"> <thead> |