{% extends "base.html" %} {% block title %}Database Edit Log{% endblock %} {% block head %} {{ super() }} {% endblock %} {% block content %}
EID User Action Time Description Comment Old Value
{%- for action in action_log -%}
{{action['evidence_id']}} {{action['user_name']}} {{action['action_name']}} {{action['timestamp']}} {{action['description']}} {{action['comment']}}
{{action['old_value']}}
{%- endfor -%}
{% endblock %}