{% extends "django_tables2/table.html" %}
{% load django_tables2 %}
{% block table.thead %}
{% for column in table.columns %}
{% if column.orderable %}
{% endblock table.thead %}
{% block table.tbody.row %}
{{ column.header }}
{% else %}
{{ column.header }}
{% endif %}
{% endfor %}
{% block table.head.last.column %}
{% endblock %}