2024-08-08 18:17:43 +00:00
|
|
|
{% extends "base.html" %}
|
|
|
|
{% load static %}
|
|
|
|
{% block title %}
|
|
|
|
{{ title }}
|
|
|
|
{% endblock title %}
|
|
|
|
{% block content %}
|
2024-08-09 10:42:54 +00:00
|
|
|
<div class="2xl:max-w-screen-2xl md:max-w-screen-md sm:max-w-screen-sm self-center">
|
2024-09-02 15:43:41 +00:00
|
|
|
<c-simple-table :columns=data.columns :rows=data.rows :page_obj=page_obj :elided_page_range=elided_page_range />
|
2024-08-09 09:47:10 +00:00
|
|
|
</div>
|
2024-08-08 18:17:43 +00:00
|
|
|
{% endblock content %}
|