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

Recent Documents

{% for doc in documents|sort(attribute='created_at', reverse=true) %} {% endfor %}
ID Created At Last Updated Details
{{ doc.get('_id', 'N/A') }} {{ format_value(doc.get('created_at', 'N/A')) }} {{ format_value(doc.get('last_updated_at', 'N/A')) }}
{% endblock %} {% block scripts %} {% endblock %}