{% extends "brillixy/base.html" %} {% load i18n %} {% load admin_urls %} {% block extrastyle %} {% endblock %} {% block breadcrumbs-middle %}
  • / {{ opts.verbose_name_plural|capfirst }}
  • / {{ object|truncatewords:"18" }}
  • {% endblock %} {% block content_title %}{% endblock %} {% block content %} {% if action_list %} {% for action in action_list %} {% endfor %}
    {% trans 'Date/time' %} {% trans 'User' %} {% trans 'Action' %}
    {{ action.action_time|date:"DATETIME_FORMAT" }} {{ action.user.get_username }}{% if action.user.get_full_name %} ({{ action.user.get_full_name }}){% endif %} {{ action.change_message }}
    {% else %}

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

    {% endif %} {% endblock %}