Bez popisu

tables2_list_view.html 405B

12345678910111213141516171819
  1. {% extends "crud/base.html" %}
  2. {% load static %}
  3. {% block crud_view_css %}
  4. {{ block.super }}
  5. <link rel="stylesheet" href="{% static 'django_tables2/bootstrap.css' %}" />
  6. <style>
  7. table.table th a {
  8. color: inherit;
  9. }
  10. </style>
  11. {% endblock %}
  12. {% block crud_view_content %}
  13. {{ block.super }}
  14. {% include "crud/filter.html" %}
  15. {% include "crud/tables2_table.html" %}
  16. {% endblock %}