{% extends 'base.html' %}


{% block content %}
{{actor.name}} Change Log

{% for history in history_list %} {% endfor %}
ID Actor Type User Date
{{ history.history_id }} {{ history.name }} {% if history.history_type == "+" %} Create {% elif history.history_type == "-" %} Delete {% elif history.history_type == "~" %} Update {% endif %} {{ history.history_user.username }} {{ history.history_date }}
{% endblock %}