{% extends 'backend/base.html' %} {% load url from future %} {% block content %}
{% for column in table.columns %} {% endfor %} {% for row in table.rows.page %} {% for value in row %} {% endfor %} {% endfor %}
{% if column.sortable %} {% endif %} {{ column }} {% if column.sortable %} {% endif %}
{% if value.get_absolute_url %} {{ value }} {% else %} {{ value }} {% endif %}
{% endblock %}