| 12345678910111213141516171819 |
- {% extends "crud/base.html" %}
- {% load static %}
- {% block crud_view_css %}
- {{ block.super }}
- <link rel="stylesheet" href="{% static 'django_tables2/bootstrap.css' %}" />
- <style>
- table.table th a {
- color: inherit;
- }
- </style>
- {% endblock %}
- {% block crud_view_content %}
- {{ block.super }}
- {% include "crud/filter.html" %}
- {% include "crud/tables2_table.html" %}
- {% endblock %}
|