Ticket #893: admin-templates2.diff

File admin-templates2.diff, 1.3 KB (added by deric <deric@…>, 19 years ago)

svn diff delete_confirmation.html object_history.html

  • delete_confirmation.html

     
    11{% extends "admin/base_site" %}
    22{% load i18n %}
    3 
     3{% block userlinks %}<a href="../../../../password_change/">{% trans 'Change password' %}</a> / <a href="../../../../logout/">{% trans 'Log out' %}</a>{% endblock %}
    44{% block content %}
    5 
    65{% if perms_lacking %}
    76    <p>{% blocktrans %}Deleting the {{ object_name }} '{{ object }}' would result in deleting related objects, but your account doesn't have permission to delete the following types of objects:{% endblocktrans %}</p>
    87    <ul>
  • object_history.html

     
    11{% extends "admin/base_site" %}
    22{% load i18n %}
    3 
     3{% block userlinks %}<a href="../../../../password_change/">{% trans 'Change password' %}</a> / <a href="../../../../logout/">{% trans 'Log out' %}</a>{% endblock %}
    44{% block breadcrumbs %}
    55<div class="breadcrumbs"><a href="../../../../">{% trans 'Home' %}</a> &rsaquo; <a href="../../">{{ module_name }}</a> &rsaquo; <a href="../">{{ object|truncatewords:"18" }}</a> &rsaquo; {% trans 'History' %}</div>
    66{% endblock %}
Back to Top