{% extends "base.html" %} {% block title %}Activity Log - Familiar Admin{% endblock %} {% block content %}

Activity Log

📥 Export CSV
{% if request.args %} Clear {% endif %}
{% for log in logs %} {% endfor %}
Timestamp User Action Details IP Address
{{ log.timestamp[:19].replace('T', ' ') }} {% if log.user_id %} {{ log.user_id[:8] }}... {% else %} System {% endif %} {{ log.action.replace('_', ' ').title() }} {{ log.details or '—' }} {{ log.ip_address or '—' }}
{% if not logs %}
📋

No activity found

Try adjusting your filters.

{% endif %} {% if logs|length >= request.args.get('limit', 100)|int %}

Showing {{ logs|length }} results. Increase limit to see more.

{% endif %}
{% endblock %}