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