diff options
author | Dan McGee <dan@archlinux.org> | 2013-01-16 23:10:24 +0100 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2013-02-09 23:20:38 +0100 |
commit | 10462425f989dc74653179f0845978a6b5e30045 (patch) | |
tree | a5dba9c748b7f82b2123d1f4050e3edf501a9e22 /templates | |
parent | 55179a4f9e8b80d515bae7032af8aefc33ae0192 (diff) | |
download | archweb-10462425f989dc74653179f0845978a6b5e30045.tar.gz archweb-10462425f989dc74653179f0845978a6b5e30045.tar.xz |
Remove {% load url from future %} from templates
This is now the default in Django 1.5.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'templates')
-rw-r--r-- | templates/base.html | 2 | ||||
-rw-r--r-- | templates/packages/removed.html | 1 | ||||
-rw-r--r-- | templates/public/download.html | 1 | ||||
-rw-r--r-- | templates/public/index.html | 1 | ||||
-rw-r--r-- | templates/public/keys.html | 1 | ||||
-rw-r--r-- | templates/releng/add.html | 1 | ||||
-rw-r--r-- | templates/releng/iso_overview.html | 1 | ||||
-rw-r--r-- | templates/releng/release_detail.html | 1 | ||||
-rw-r--r-- | templates/releng/release_list.html | 1 | ||||
-rw-r--r-- | templates/releng/result_list.html | 1 | ||||
-rw-r--r-- | templates/releng/result_section.html | 1 | ||||
-rw-r--r-- | templates/releng/results.html | 1 | ||||
-rw-r--r-- | templates/releng/thanks.html | 1 | ||||
-rw-r--r-- | templates/visualize/index.html | 1 |
14 files changed, 1 insertions, 14 deletions
diff --git a/templates/base.html b/templates/base.html index cc507fb..15bb7e2 100644 --- a/templates/base.html +++ b/templates/base.html @@ -1,4 +1,4 @@ -{% load url from future %}{% load static from staticfiles %}<!DOCTYPE html> +{% load static from staticfiles %}<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> diff --git a/templates/packages/removed.html b/templates/packages/removed.html index ea20ce8..f188b6d 100644 --- a/templates/packages/removed.html +++ b/templates/packages/removed.html @@ -1,5 +1,4 @@ {% extends "base.html" %} -{% load url from future %} {% load package_extras %} {% block title %}Arch Linux - Not Available - {{ name }} {{ version }} ({{ arch.name }}){% endblock %} diff --git a/templates/public/download.html b/templates/public/download.html index c68cf66..7936efb 100644 --- a/templates/public/download.html +++ b/templates/public/download.html @@ -1,6 +1,5 @@ {% extends "base.html" %} {% load cache %} -{% load url from future %} {% load static from staticfiles %} {% load flags %} diff --git a/templates/public/index.html b/templates/public/index.html index 8926a06..3f88c18 100644 --- a/templates/public/index.html +++ b/templates/public/index.html @@ -1,6 +1,5 @@ {% extends "base.html" %} {% load cache %} -{% load url from future %} {% load static from staticfiles %} {% block head %} diff --git a/templates/public/keys.html b/templates/public/keys.html index ad2dd19..91b5307 100644 --- a/templates/public/keys.html +++ b/templates/public/keys.html @@ -1,6 +1,5 @@ {% extends "base.html" %} {% load static from staticfiles %} -{% load url from future %} {% load pgp %} {% block title %}Arch Linux - Master Signing Keys{% endblock %} diff --git a/templates/releng/add.html b/templates/releng/add.html index ed02984..d060395 100644 --- a/templates/releng/add.html +++ b/templates/releng/add.html @@ -1,5 +1,4 @@ {% extends "base.html" %} -{% load url from future %} {% block title %}Arch Linux - Test Result Entry{% endblock %} diff --git a/templates/releng/iso_overview.html b/templates/releng/iso_overview.html index 23ef013..196f0c0 100644 --- a/templates/releng/iso_overview.html +++ b/templates/releng/iso_overview.html @@ -1,6 +1,5 @@ {% extends "base.html" %} {% load static from staticfiles %} -{% load url from future %} {% block content %} <div class="box"> diff --git a/templates/releng/release_detail.html b/templates/releng/release_detail.html index 01c0319..0950753 100644 --- a/templates/releng/release_detail.html +++ b/templates/releng/release_detail.html @@ -1,5 +1,4 @@ {% extends "base.html" %} -{% load url from future %} {% block title %}Arch Linux - Release: {{ release.version }}{% endblock %} diff --git a/templates/releng/release_list.html b/templates/releng/release_list.html index ef53a93..5f24826 100644 --- a/templates/releng/release_list.html +++ b/templates/releng/release_list.html @@ -1,5 +1,4 @@ {% extends "base.html" %} -{% load url from future %} {% load static from staticfiles %} {% block title %}Arch Linux - Releases{% endblock %} diff --git a/templates/releng/result_list.html b/templates/releng/result_list.html index be5783b..12bf39d 100644 --- a/templates/releng/result_list.html +++ b/templates/releng/result_list.html @@ -1,6 +1,5 @@ {% extends "base.html" %} {% load static from staticfiles %} -{% load url from future %} {% block content %} <div class="box"> diff --git a/templates/releng/result_section.html b/templates/releng/result_section.html index ae951eb..5e0b6f6 100644 --- a/templates/releng/result_section.html +++ b/templates/releng/result_section.html @@ -1,4 +1,3 @@ -{% load url from future %} <tr> <th>{% if option.is_rollback %}Rollback: {% endif %}{{ option.name|title }}</th> <th>Last Success</th> diff --git a/templates/releng/results.html b/templates/releng/results.html index c19b42a..59d8351 100644 --- a/templates/releng/results.html +++ b/templates/releng/results.html @@ -1,5 +1,4 @@ {% extends "base.html" %} -{% load url from future %} {% block title %}Arch Linux - Release Engineering Testbuild Results{% endblock %} diff --git a/templates/releng/thanks.html b/templates/releng/thanks.html index 66d65a5..2462daf 100644 --- a/templates/releng/thanks.html +++ b/templates/releng/thanks.html @@ -1,5 +1,4 @@ {% extends "base.html" %} -{% load url from future %} {% block title %}Arch Linux - Feedback - Thanks!{% endblock %} diff --git a/templates/visualize/index.html b/templates/visualize/index.html index 1e932d9..2b79d60 100644 --- a/templates/visualize/index.html +++ b/templates/visualize/index.html @@ -1,6 +1,5 @@ {% extends "base.html" %} {% load static from staticfiles %} -{% load url from future %} {% block title %}Arch Linux - Visualizations{% endblock %} |