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

📚 Operation History

Complete audit trail of all data operations

{% if history %}
{% for item in history | reverse %} {% endfor %}
Time Dataset Action Details
{{ item.timestamp[:19] }} {{ item.dataset_name }} {{ item.action }} {{ item.details }}
{% else %}
📚
No History Yet

Your operation history will appear here once you start using the platform.

Get Started
{% endif %}
{% endblock %}