{% extends 'base.html' %}


{% block content %}
Activity Change Log

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