18 lines
575 B
HTML
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 %} |