Changeset 4351
- Timestamp:
- 01/18/07 21:38:13 (2 years ago)
- Files:
-
- django/branches/newforms-admin/django/contrib/admin/templates/admin/change_form.html (modified) (2 diffs)
- django/branches/newforms-admin/django/contrib/admin/templates/admin/change_list.html (modified) (1 diff)
- django/branches/newforms-admin/django/contrib/admin/templates/admin/delete_confirmation.html (modified) (2 diffs)
- django/branches/newforms-admin/django/contrib/admin/templates/admin/index.html (modified) (1 diff)
- django/branches/newforms-admin/django/contrib/admin/templates/admin/invalid_setup.html (modified) (1 diff)
- django/branches/newforms-admin/django/contrib/admin/templates/admin/login.html (modified) (1 diff)
- django/branches/newforms-admin/django/contrib/admin/templates/admin/object_history.html (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/branches/newforms-admin/django/contrib/admin/templates/admin/change_form.html
r4338 r4351 1 1 {% extends "admin/base_site.html" %} 2 2 {% load i18n admin_modify adminmedia %} 3 3 4 {% block extrahead %}{{ block.super }} 4 5 <script type="text/javascript" src="../../../jsi18n/"></script> 5 6 {% for js in javascript_imports %}{% include_admin_script js %}{% endfor %} 6 7 {% endblock %} 8 7 9 {% block stylesheet %}{% admin_media_prefix %}css/forms.css{% endblock %} 10 8 11 {% block coltype %}{% if ordered_objects %}colMS{% else %}colM{% endif %}{% endblock %} 12 9 13 {% block bodyclass %}{{ opts.app_label }}-{{ opts.object_name.lower }} change-form{% endblock %} 14 10 15 {% block userlinks %}<a href="../../../doc/">{% trans 'Documentation' %}</a> / <a href="../../../password_change/">{% trans 'Change password' %}</a> / <a href="../../../logout/">{% trans 'Log out' %}</a>{% endblock %} 16 11 17 {% block breadcrumbs %}{% if not is_popup %} 12 18 <div class="breadcrumbs"> … … 16 22 </div> 17 23 {% endif %}{% endblock %} 24 18 25 {% block content %}<div id="content-main"> 19 26 {% block object-tools %} django/branches/newforms-admin/django/contrib/admin/templates/admin/change_list.html
r4230 r4351 1 1 {% extends "admin/base_site.html" %} 2 2 {% load adminmedia admin_list i18n %} 3 3 4 {% block stylesheet %}{% admin_media_prefix %}css/changelists.css{% endblock %} 5 4 6 {% block bodyclass %}change-list{% endblock %} 7 5 8 {% block userlinks %}<a href="../../doc/">{% trans 'Documentation' %}</a> / <a href="../../password_change/">{% trans 'Change password' %}</a> / <a href="../../logout/">{% trans 'Log out' %}</a>{% endblock %} 9 6 10 {% if not is_popup %}{% block breadcrumbs %}<div class="breadcrumbs"><a href="../../">{% trans "Home" %}</a> › {{ cl.opts.verbose_name_plural|capfirst|escape }}</div>{% endblock %}{% endif %} 11 7 12 {% block coltype %}flex{% endblock %} 13 8 14 {% block content %} 9 15 <div id="content-main"> django/branches/newforms-admin/django/contrib/admin/templates/admin/delete_confirmation.html
r3349 r4351 1 1 {% extends "admin/base_site.html" %} 2 2 {% load i18n %} 3 3 4 {% block userlinks %}<a href="../../../../doc/">{% trans 'Documentation' %}</a> / <a href="../../../../password_change/">{% trans 'Change password' %}</a> / <a href="../../../../logout/">{% trans 'Log out' %}</a>{% endblock %} 5 4 6 {% block breadcrumbs %} 5 7 <div class="breadcrumbs"> … … 10 12 </div> 11 13 {% endblock %} 14 12 15 {% block content %} 13 16 {% if perms_lacking %} django/branches/newforms-admin/django/contrib/admin/templates/admin/index.html
r3349 r4351 3 3 4 4 {% block stylesheet %}{% load adminmedia %}{% admin_media_prefix %}css/dashboard.css{% endblock %} 5 5 6 {% block coltype %}colMS{% endblock %} 7 6 8 {% block bodyclass %}dashboard{% endblock %} 9 7 10 {% block breadcrumbs %}{% endblock %} 11 8 12 {% block content %} 9 13 <div id="content-main"> django/branches/newforms-admin/django/contrib/admin/templates/admin/invalid_setup.html
r3349 r4351 5 5 6 6 {% block content %} 7 8 7 <p>{% trans "Something's wrong with your database installation. Make sure the appropriate database tables have been created, and make sure the database is readable by the appropriate user." %}</p> 9 10 8 {% endblock %} django/branches/newforms-admin/django/contrib/admin/templates/admin/login.html
r3931 r4351 3 3 4 4 {% block stylesheet %}{% load adminmedia %}{% admin_media_prefix %}css/login.css{% endblock %} 5 5 6 {% block bodyclass %}login{% endblock %} 7 6 8 {% block content_title %}{% endblock %} 9 7 10 {% block breadcrumbs %}{% endblock %} 8 11 9 12 {% block content %} 10 11 13 {% if error_message %} 12 14 <p class="errornote">{{ error_message }}</p> django/branches/newforms-admin/django/contrib/admin/templates/admin/object_history.html
r3349 r4351 1 1 {% extends "admin/base_site.html" %} 2 2 {% load i18n %} 3 3 4 {% block userlinks %}<a href="../../../../doc/">{% trans 'Documentation' %}</a> / <a href="../../../../password_change/">{% trans 'Change password' %}</a> / <a href="../../../../logout/">{% trans 'Log out' %}</a>{% endblock %} 5 4 6 {% block breadcrumbs %} 5 7 <div class="breadcrumbs"><a href="../../../../">{% trans 'Home' %}</a> › <a href="../../">{{ module_name|escape }}</a> › <a href="../">{{ object|escape|truncatewords:"18" }}</a> › {% trans 'History' %}</div> … … 7 9 8 10 {% block content %} 9 10 11 <div id="content-main"> 11 12 <div class="module"> 12 13 13 14 {% if action_list %} 14 15 15 <table id="change-history"> 16 16 <thead> … … 31 31 </tbody> 32 32 </table> 33 34 33 {% else %} 35 36 34 <p>{% trans "This object doesn't have a change history. It probably wasn't added via this admin site." %}</p> 37 38 35 {% endif %} 39 40 36 </div> 41 37 </div> 42 43 38 {% endblock %}
