{% extends 'base.html' %} {% load custom_tags_and_filters %} {% block title %}History for {{ name }}{% endblock %} {% block content %} {% if action_list %}

History for {{ name }}

{% button type="export" value="Export" url=request.path|concat:"?csv=true" target="_blank" %}

{% if has_details %}{% endif %} {% for row in action_list.rows %} {% if has_details %}{% endif %} {% endfor %}
Date & time User ActionDetails
{{ row.date }} {{ row.authorizer }} {{ row.message|linebreaksbr }}{{ row.details|default_if_none:"" }}
{% else %}

{{ name }} doesn't have a change history.

{% endif %} {% endblock %}