From bc787f6a3222c2d425d96dea57a1516b31677bf5 Mon Sep 17 00:00:00 2001 From: Aymeric Augustin Date: Sun, 24 Feb 2013 15:16:45 +0100 Subject: [PATCH] Loaded cycle and firstof from future in built-in templates. Refs #17906. This was missing from f49e9a517f2fdc1d9ed7ac841ace77636cbd6747. --- django/contrib/admin/templates/admin/base.html | 4 ++-- django/contrib/admin/templates/admin/change_list_results.html | 2 +- django/contrib/admin/templates/admin/edit_inline/tabular.html | 2 +- .../admindocs/templates/admin_doc/template_filter_index.html | 2 +- .../admindocs/templates/admin_doc/template_tag_index.html | 2 +- django/views/debug.py | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/django/contrib/admin/templates/admin/base.html b/django/contrib/admin/templates/admin/base.html index 7bbd73a464..28a9dac291 100644 --- a/django/contrib/admin/templates/admin/base.html +++ b/django/contrib/admin/templates/admin/base.html @@ -1,4 +1,4 @@ -{% load admin_static %} +{% load admin_static %}{% load firstof from future %} {% block title %}{% endblock %} @@ -26,7 +26,7 @@ {% if user.is_active and user.is_staff %}
{% trans 'Welcome,' %} - {% filter force_escape %}{% firstof user.get_short_name user.get_username %}{% endfilter %}. + {% firstof user.get_short_name user.get_username %}. {% block userlinks %} {% url 'django-admindocs-docroot' as docsroot %} {% if docsroot %} diff --git a/django/contrib/admin/templates/admin/change_list_results.html b/django/contrib/admin/templates/admin/change_list_results.html index e3d4b2549a..636869895d 100644 --- a/django/contrib/admin/templates/admin/change_list_results.html +++ b/django/contrib/admin/templates/admin/change_list_results.html @@ -1,4 +1,4 @@ -{% load i18n admin_static %} +{% load i18n admin_static %}{% load cycle from future %} {% if result_hidden_fields %}
{# DIV for HTML validation #} {% for item in result_hidden_fields %}{{ item }}{% endfor %} diff --git a/django/contrib/admin/templates/admin/edit_inline/tabular.html b/django/contrib/admin/templates/admin/edit_inline/tabular.html index 71a62ba71a..ca853bc989 100644 --- a/django/contrib/admin/templates/admin/edit_inline/tabular.html +++ b/django/contrib/admin/templates/admin/edit_inline/tabular.html @@ -1,4 +1,4 @@ -{% load i18n admin_static admin_modify %} +{% load i18n admin_static admin_modify %}{% load cycle from future %}