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