Commit 5e4e0b6f authored by Maxime Turcotte's avatar Maxime Turcotte Committed by Tim Graham
Browse files

Fixed #22306 -- Deprecated future versions of cycle and firstof template tags.

parent 12e9adcd
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -633,6 +633,7 @@ answer newbie questions, and generally made Django that much better:
    tt@gurgle.no
    David Tulig <david.tulig@gmail.com>
    Justine Tunney <jtunney@lobstertech.com>
    Maxime Turcotte <maxocub@riseup.net>
    Amit Upadhyay <http://www.amitu.com/blog/>
    Adam Vandenberg
    Geert Vanderkelen
+1 −1
Original line number Diff line number Diff line
{% load admin_static %}{% load firstof 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>
+1 −1
Original line number Diff line number Diff line
{% load i18n admin_static %}{% load cycle from future %}
{% load i18n admin_static %}
{% if result_hidden_fields %}
<div class="hiddenfields">{# DIV for HTML validation #}
{% for item in result_hidden_fields %}{{ item }}{% endfor %}
+1 −1
Original line number Diff line number Diff line
{% load i18n admin_static admin_modify %}{% load cycle from future %}
{% load i18n admin_static admin_modify %}
<div class="inline-group" id="{{ inline_admin_formset.formset.prefix }}-group">
  <div class="tabular inline-related {% if forloop.last %}last-related{% endif %}">
{{ inline_admin_formset.formset.management_form }}
+1 −1
Original line number Diff line number Diff line
{% extends "admin/base_site.html" %}
{% load i18n %}{% load firstof from future %}
{% load i18n %}

{% block coltype %}colSM{% endblock %}
{% block breadcrumbs %}
Loading