Commit eb351ac9 authored by Claude Paroz's avatar Claude Paroz
Browse files

Fixed #18037 -- Changed behaviour of url and ssi template tags to the new...

Fixed #18037 -- Changed behaviour of url and ssi template tags to the new syntax, as per official deprecation timeline. Thanks Ramiro Morales and Jannis Leidel for the review.


git-svn-id: http://code.djangoproject.com/svn/django/trunk@17934 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent c4e62eff
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
{% extends "admin/base_site.html" %}
{% load i18n %}
{% load url from future %}

{% block breadcrumbs %}
<div class="breadcrumbs">
+0 −1
Original line number Diff line number Diff line
{% extends "admin/index.html" %}
{% load i18n %}
{% load url from future %}

{% if not is_popup %}
{% block breadcrumbs %}
+0 −1
Original line number Diff line number Diff line
{% extends "admin/base_site.html" %}
{% load i18n admin_static admin_modify %}
{% load url from future %}
{% load admin_urls %}

{% block extrahead %}{{ block.super }}
+1 −1
Original line number Diff line number Diff line
{% load admin_static %}{% load url from future %}<!DOCTYPE html>
{% load admin_static %}<!DOCTYPE html>
<html lang="{{ LANGUAGE_CODE|default:"en-us" }}" {% if LANGUAGE_BIDI %}dir="rtl"{% endif %}>
<head>
<title>{% block title %}{% endblock %}</title>
+0 −1
Original line number Diff line number Diff line
{% extends "admin/base_site.html" %}
{% load i18n admin_static admin_modify %}
{% load url from future %}
{% load admin_urls %}

{% block extrahead %}{{ block.super }}
Loading