11 lines
334 B
HTML
11 lines
334 B
HTML
{% extends "base.html" %}
|
|
{% load static %}
|
|
{% block title %}
|
|
{{ title }}
|
|
{% endblock title %}
|
|
{% block content %}
|
|
<div class="max-w-screen-2xl min-w-screen-2xl self-center">
|
|
{% simple_table columns=data.columns rows=data.rows page_obj=page_obj elided_page_range=elided_page_range %}
|
|
</div>
|
|
{% endblock content %}
|