{% extends "admin/base.html" %} {% load i18n admin_urls %} {% block content_title %} {% blocktrans with object=object %}Change history: {{ object }}{% endblocktrans %} {% endblock %} {% block content %}
| {% trans "Date/time" %} | {% trans "User" %} | {% trans "Action" %} |
|---|---|---|
| {{ action.action_time|date:"N j, Y, P" }} | {{ action.user.get_username }}{% if action.user.get_full_name %} ({{ action.user.get_full_name }}){% endif %} | {% if action.is_addition %} {% trans "Added" %} {% elif action.is_change %} {% trans "Changed" %} {{ action.get_change_message }} {% elif action.is_deletion %} {% trans "Deleted" %} {% endif %} |
{% trans "This object doesn't have a change history. It probably wasn't added via this admin site." %}