{% extends "base_table.html" %} {% block content_title %} {{ super() }} {{ ds_table.all().count() }} rows, showing page {{ page }} {% endblock %} {% block content_tab_class %} active{% endblock %} {% block inner_content %} {# add filters #} {% if allow_bulk %}
{% endif %} {% if allow_bulk %} {% endif %} {% for column in columns %} {% endfor %} {% if allow_edit %}{% endif %} {% for row in query %} {% if allow_edit %} {% set pk = row|encode_pk(table_pk) %} {% endif %} {% if allow_bulk %} {% endif %} {% for field in field_names %} {% set value = row[field] %} {% endfor %} {% if allow_edit %} {% endif %} {% endfor %}
{{ column }}
{% if value is none %} NULL {% else %} {{ value|value_filter|safe }} {% endif %} Edit Delete
{% if allow_bulk %}
{% endif %} {% endblock %}