Files
eveAI/eveai_app/templates/document/documents.html
2024-05-05 20:21:44 +02:00

18 lines
575 B
HTML

{% extends 'base.html' %}
{% from 'macros.html' import render_nested_table, render_pagination %}
{% block title %}Documents{% endblock %}
{% block content_title %}Documents{% endblock %}
{% block content_description %}View Documents for Tenant{% endblock %}
{% block content %}
<div class="container">
<!-- Documents Table -->
{{ render_nested_table(headers=["Name", "Created At", "Valid From", "Languages & Versions"], rows=rows) }}
</div>
{% endblock %}
{% block content_footer %}
{{ render_pagination(pagination, 'document_bp.documents') }}
{% endblock %}