{% extends "admin/base_site.html" %} {% load i18n admin_urls %} {% if not is_popup %} {% block breadcrumbs %} {% endblock %} {% endif %} {% block content %}
{% block actions_history %}

{% trans "Activities" %}

{% if action_list %}
{% for action in action_list %} {% endfor %}
{% translate 'Actor' %} {% translate 'Date' %} {% translate 'Activities' %}
{{ action.actor.get_username }}{% if action.actor.get_full_name %} ({{ action.actor.get_full_name }}){% endif %}
{{ action.timesince }}
{{ action.timestamp|date:"DATETIME_FORMAT" }} {{ action.get_note }}
{% else %}

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

{% endif %}
{% endblock actions_history %} {% block extra_history %}{% endblock extra_history %}
{% endblock %}