17 lines
No EOL
430 B
HTML
17 lines
No EOL
430 B
HTML
<!-- templates/table.html -->
|
|
{% extends "layout.html" %}
|
|
|
|
{% import "_breadcrumb_fragment.html" as breadcrumbs %}
|
|
{% import "_table_fragment.html" as tables %}
|
|
|
|
{% block title %}{{ title }}{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
{{ breadcrumbs.breadcrumb_header(
|
|
title=title
|
|
) }}
|
|
|
|
{{ tables.render_table(header, rows, entry_route) }}
|
|
{{ tables.render_pagination(endpoint, page, has_prev, has_next, total_pages) }}
|
|
{% endblock %} |