Ticket #14450: templates.admin.patch
File templates.admin.patch, 2.8 KB (added by , 14 years ago) |
---|
-
change_form.html
old new 11 11 12 12 {% block coltype %}{% if ordered_objects %}colMS{% else %}colM{% endif %}{% endblock %} 13 13 14 {% block bodyclass %}{{ opts.app_label}}-{{ opts.object_name.lower }} change-form{% endblock %}14 {% block bodyclass %}{{ app_name }}-{{ opts.object_name.lower }} change-form{% endblock %} 15 15 16 16 {% block breadcrumbs %}{% if not is_popup %} 17 17 <div class="breadcrumbs"> 18 18 <a href="../../../">{% trans "Home" %}</a> › 19 <a href="../../">{{ app_ label|capfirst|escape }}</a> ›19 <a href="../../">{{ app_name|escape }}</a> › 20 20 {% if has_change_permission %}<a href="../">{{ opts.verbose_name_plural|capfirst }}</a>{% else %}{{ opts.verbose_name_plural|capfirst }}{% endif %} › 21 21 {% if add %}{% trans "Add" %} {{ opts.verbose_name }}{% else %}{{ original|truncatewords:"18" }}{% endif %} 22 22 </div> -
change_list.html
old new 43 43 </a> 44 44 › 45 45 <a href="../"> 46 {{ app_ label|capfirst}}46 {{ app_name }} 47 47 </a> 48 48 › 49 49 {{ cl.opts.verbose_name_plural|capfirst }} -
delete_confirmation.html
old new 4 4 {% block breadcrumbs %} 5 5 <div class="breadcrumbs"> 6 6 <a href="../../../../">{% trans "Home" %}</a> › 7 <a href="../../../">{{ app_ label|capfirst}}</a> ›7 <a href="../../../">{{ app_name }}</a> › 8 8 <a href="../../">{{ opts.verbose_name_plural|capfirst }}</a> › 9 9 <a href="../">{{ object|truncatewords:"18" }}</a> › 10 10 {% trans 'Delete' %} -
delete_selected_confirmation.html
old new 4 4 {% block breadcrumbs %} 5 5 <div class="breadcrumbs"> 6 6 <a href="../../">{% trans "Home" %}</a> › 7 <a href="../">{{ app_ label|capfirst}}</a> ›7 <a href="../">{{ app_name }}</a> › 8 8 <a href="./">{{ opts.verbose_name_plural|capfirst }}</a> › 9 9 {% trans 'Delete multiple objects' %} 10 10 </div> -
object_history.html
old new 4 4 {% block breadcrumbs %} 5 5 <div class="breadcrumbs"> 6 6 <a href="../../../../">{% trans 'Home' %}</a> › 7 <a href="../../../">{{ app_ label|capfirst}}</a> ›7 <a href="../../../">{{ app_name }}</a> › 8 8 <a href="../../">{{ module_name }}</a> › 9 9 <a href="../">{{ object|truncatewords:"18" }}</a> › 10 10 {% trans 'History' %}