{% extends "django_tables2/table.html" %}
{% block table.thead %}
{% for column in table.columns %}
{{ column.header }} |
{% endfor %}
{% endblock table.thead %}
{% block table %}
{{ block.super }}
{% comment %}
The div below is a ridiculous hack to avoid the jQuery.details.js
setting the display: of the script element to "block" when showing a
table that is in a element.
{% endcomment %}
{% endblock %}