diff options
author | Dan McGee <dan@archlinux.org> | 2012-03-23 20:09:38 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2012-03-23 20:09:38 -0500 |
commit | 8e10699d53281be53c88a3695de6aa496e084dc6 (patch) | |
tree | c3dc570d663153f2a54fb92b0c5be04949b72515 /templates/public/download.html | |
parent | 90e08b4863dfaecafee5b151478bda4513b12e85 (diff) |
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/public/download.html')
-rw-r--r-- | templates/public/download.html | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/templates/public/download.html b/templates/public/download.html index 5e076e28..d244ec75 100644 --- a/templates/public/download.html +++ b/templates/public/download.html @@ -1,5 +1,6 @@ {% extends "base.html" %} {% load cache cdn %} +{% load url from future %} {% block title %}Arch Linux - Downloads{% endblock %} {% block navbarclass %}anb-download{% endblock %} @@ -43,7 +44,7 @@ <p>If you are an existing Arch user, there is no need to download a new ISO to update your existing system. You may be looking for - <a href="{% url mirrorlist %}">an updated mirrorlist</a> instead.</p> + <a href="{% url 'mirrorlist' %}">an updated mirrorlist</a> instead.</p> <h3>BitTorrent Download (recommended)</h3> @@ -125,7 +126,7 @@ <li><a href="{{ releng_pxeboot_url }}" title="Arch Linux Netboot Live System">Boot latest snapshots over the network</a> <img width="16" height="16" src="{% cdnprefix %}/media/new.png" alt="New"/></li> - <li><a href="{% url releng-test-overview %}" + <li><a href="{% url 'releng-test-overview' %}" title="Release Engineering ISO feedback">Feedback</a></li> </ul> |