{% extends "base.html" %} {% load pagination_tags %} {% block title %}User Defined Lists{% endblock %} {% block content %}

User Defined Lists

({{table.rows.count}})

{% autopaginate table.rows 100 %} {% for column in table.columns %} {% endfor %} {% for row in table.rows %} {% endfor %} {% paginate %}
{% if column.sortable %} {{ column }} {% if column.is_ordered_reverse %} {% else %} {% endif %} {% else %} {{ column }} {% endif %}
{{ row.data.id }} {{ row.data.description }}
{% endblock %}