~ubuntu-branches/debian/squeeze/python-django/squeeze

« back to all changes in this revision

Viewing changes to django/contrib/admin/templates/admin/object_history.html

  • Committer: Bazaar Package Importer
  • Author(s): Chris Lamb, Chris Lamb, David Spreen, Sandro Tosi
  • Date: 2008-11-19 21:31:00 UTC
  • mfrom: (1.2.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20081119213100-gp0lqhxl1qxa6dgl
Tags: 1.0.2-1
[ Chris Lamb ]
* New upstream bugfix release. Closes: #505783
* Add myself to Uploaders with ACK from Brett.

[ David Spreen ]
* Remove python-pysqlite2 from Recommends because Python 2.5 includes
  sqlite library used by Django. Closes: 497886

[ Sandro Tosi ]
* debian/control
  - switch Vcs-Browser field to viewsvn

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
{% block breadcrumbs %}
5
5
<div class="breadcrumbs">
6
6
    <a href="../../../../">{% trans 'Home' %}</a> &rsaquo; 
7
 
    <a href="../../../">{{ app_label|capfirst|escape }}</a> &rsaquo; 
 
7
    <a href="../../../">{{ app_label|capfirst }}</a> &rsaquo; 
8
8
    <a href="../../">{{ module_name }}</a> &rsaquo; 
9
9
    <a href="../">{{ object|truncatewords:"18" }}</a> &rsaquo; 
10
10
    {% trans 'History' %}
28
28
        {% for action in action_list %}
29
29
        <tr>
30
30
            <th scope="row">{{ action.action_time|date:_("DATETIME_FORMAT") }}</th>
31
 
            <td>{{ action.user.username }}{% if action.user.first_name %} ({{ action.user.first_name }} {{ action.user.last_name }}){% endif %}</td>
 
31
            <td>{{ action.user.username }}{% if action.user.get_full_name %} ({{ action.user.get_full_name }}){% endif %}</td>
32
32
            <td>{{ action.change_message }}</td>
33
33
        </tr>
34
34
        {% endfor %}