6 lines
207 B
HTML
6 lines
207 B
HTML
|
{% for header in headers %}<th{{ header.class_attr }}>
|
||
|
{% if header.sortable %}<a href="{{ header.url|escape }}">{% endif %}
|
||
|
{{ header.text }}
|
||
|
{% if header.sortable %}</a>{% endif %}
|
||
|
</th>{% endfor %}
|