migrate templates to bootstrap 5

This commit is contained in:
checktheroads
2021-04-18 11:35:42 -07:00
parent f4aa0f4c87
commit 199dc07399
19 changed files with 650 additions and 630 deletions

View File

@@ -1,19 +1,22 @@
{% extends 'base.html' %}
{% extends 'layout.html' %}
{% load buttons %}
{% block title %}{{ title }}{% endblock %}
{% block extra_controls %}{% export_button content_type %}{% endblock %}
{% block content %}
<div class="float-end noprint">
{% export_button content_type %}
</div>
<div class="row">
<div class="col-md-12">
<div class="col-md-3 pull-right right-side-panel noprint">
{% include 'inc/search_panel.html' %}
<div class="row mb-3">
<div class="col-md-9">
<div class="card">
<div class="card-body">
{% include 'responsive_table.html' %}
</div>
</div>
{% include 'responsive_table.html' %}
{% include 'inc/paginator.html' with paginator=table.paginator page=table.page %}
</div>
<div class="col-md-3 float-end right-side-panel noprint">
{% include 'inc/search_panel.html' %}
</div>
</div>
{% endblock %}