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/add.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/add.html')
-rw-r--r-- | templates/releng/add.html | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/templates/releng/add.html b/templates/releng/add.html index 8488b40..ed02984 100644 --- a/templates/releng/add.html +++ b/templates/releng/add.html @@ -1,4 +1,5 @@ {% extends "base.html" %} +{% load url from future %} {% block title %}Arch Linux - Test Result Entry{% endblock %} @@ -13,7 +14,7 @@ installation properly. Some options require you to check several things (such as config files), this will be mentioned alongside the option.</p> <p>There is also an overview of all feedback on the - <a href="{% url releng-test-overview %}">results page</a>. Once we have + <a href="{% url 'releng-test-overview' %}">results page</a>. Once we have builds that are properly tested (enough successful feedback for all important features of the ISO or a slightly earlier ISO), we can release new official media.</p> |