{% extends "base.html" %} {% block title %}Activity History - {{ lab_name }}{% endblock %} {% block content %}

Activity History

{% if all_users %}
Reset
{% endif %}
{% if not filter_user_id and all_users %} {% endif %} {% for log in logs %} {% if not filter_user_id and all_users %} {% endif %} {% endfor %}
TimeUserAction Details
{{ log.created_at }}{{ log.user_name or 'System/Unknown' }}{{ log.action }} {{ log.details or '-' }}
{% if not logs %}

No history records found.

{% endif %}
{% endblock %}