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/results.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/results.html')
-rw-r--r-- | templates/releng/results.html | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/templates/releng/results.html b/templates/releng/results.html index 4ff3c86..71af708 100644 --- a/templates/releng/results.html +++ b/templates/releng/results.html @@ -1,4 +1,5 @@ {% extends "base.html" %} +{% load url from future %} {% block title %}Arch Linux - Release Engineering Testbuild Results{% endblock %} @@ -9,12 +10,12 @@ <p>This is an overview screen showing a test results matrix of release engineering produced ISOs. Various options and configurations are shown with last success and last failure results, if known. To help improve ISO - quality, you are encouraged to <a href="{% url releng-test-submit %}">give feedback</a> + quality, you are encouraged to <a href="{% url 'releng-test-submit' %}">give feedback</a> if you have tested and used any ISOs. Both successful and failed results are encouraged and welcome.</p> <p>For a overview of which ISOs tested best, have a look at - the <a href="{% url releng-iso-overview %}">overview</a>.</p> + the <a href="{% url 'releng-iso-overview' %}">overview</a>.</p> <p>For more information, see the <a href="https://wiki.archlinux.org/index.php/DeveloperWiki:releng_testimages_feedback">documentation |