2021-05-17 16:27:27 -04:00
|
|
|
{% extends 'base/layout.html' %}
|
2018-02-02 16:12:57 -05:00
|
|
|
{% load buttons %}
|
2021-08-01 21:24:22 -07:00
|
|
|
{% load render_table from django_tables2 %}
|
2016-03-01 11:23:03 -05:00
|
|
|
|
2021-03-13 11:16:29 -07:00
|
|
|
{% block title %}{{ title }}{% endblock %}
|
|
|
|
|
2021-04-18 11:35:42 -07:00
|
|
|
{% block extra_controls %}{% export_button content_type %}{% endblock %}
|
|
|
|
|
2016-03-01 11:23:03 -05:00
|
|
|
{% block content %}
|
2021-08-01 21:24:22 -07:00
|
|
|
<div class="row mb-3">
|
|
|
|
<div class="col col-md-7 col-lg-8 col-xl-9 col-xxl-10">
|
|
|
|
{% include 'inc/table_controls.html' %}
|
|
|
|
|
|
|
|
<div class="table-responsive">
|
|
|
|
{% render_table table 'inc/table.html' %}
|
2021-04-18 11:35:42 -07:00
|
|
|
</div>
|
2021-08-01 21:24:22 -07:00
|
|
|
|
|
|
|
{% include 'inc/paginator.html' with paginator=table.paginator page=table.page %}
|
2020-11-10 16:00:21 -05:00
|
|
|
</div>
|
2021-08-01 21:24:22 -07:00
|
|
|
{% if filter_form %}
|
|
|
|
{% include 'inc/filter_list.html' %}
|
|
|
|
{% endif %}
|
2016-03-01 11:23:03 -05:00
|
|
|
</div>
|
|
|
|
{% endblock %}
|