{% extends "admin/base_site.html" %} {% load i18n admin_urls %} {% block breadcrumbs %} {% endblock %} {% block content %}
{% if action_list %} {% for action in action_list %} {% endfor %}
{% translate 'Date/time' %} {% translate 'User' %} {% translate 'Value' %} {% translate 'User Type' %} {% translate 'Tags' %} {% translate 'Help' %} {% translate 'Batch Changes' %}
{{ action.created_on|date:"DATETIME_FORMAT" }} {{ action.get_was_changed_display }} {{ action.get_by_user_display }} {{ action.user }}
{{ action.value }}
{{action.user_defined_type_display}} {% if action.tags %}
{{action.tags}}
{% endif %}
{% if action.help %}
{{action.help}}
{% endif %}
{% translate 'Batch Changes' %}
{% else %}

{% translate "This object doesn’t have a change history. It probably wasn’t added via this admin site." %}

{% endif %}
{% endblock %}