1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
{% load static %}
{% load render_table from django_tables2 %}
{% load django_bootstrap5 %}
<!doctype html>
<html>
<head>
<title>django_tables2 with bootstrap 5 template example</title>
{% bootstrap_css %}
</head>
<body>
<div class="container">
{% block body %}
<a href="https://getbootstrap.com/docs/5.0/content/tables/">Bootstrap 5 - tables docs</a> |
<a href="https://getbootstrap.com/docs/5.0/components/pagination/">Bootstrap 5 - pagination docs</a>
<h3>django_tables2 with <a href="https://getbootstrap.com/docs/5.0/getting-started/introduction/">Bootstrap 5</a> template example</h3>
<div class="row">
{% if filter %}
<div class="col-sm-10">
<form action="" method="get" class="form form-inline">
{% bootstrap_form filter.form layout='inline' %}
{% bootstrap_button 'filter' %}
</form>
</div>
{% endif %}
<div class="col-sm-10">
{% render_table table %}
</div>
</div>
{% endblock %}
</div>
</body>
</html>
|