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

History for {{ name }}

{% for action in action_list %} {% endfor %}
Date & time User Action
{{ action.date }} {{ action.authorizer }} {{ action.message }}
{% else %}

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

{% endif %} {% endblock %}