{{ info }}
{% for title in table.titles %}
{{ title }} |
{% endfor %}
{% if table.paginate == 1 %}
{% for line in table.lines.items %}
{% for title in table.titles %}
{% if title == table.item_to_be_linked %}
{{ line|attr(title) }} |
{% else %}
{{ line|attr(title) }} |
{% endif %}
{% endfor %}
{% endfor %}
{% else %}
{% for line in table.lines %}
{% for title in table.titles %}
{% if title == table.item_to_be_linked %}
{{ line|attr(title) }} |
{% else %}
{{ line|attr(title) }} |
{% endif %}
{% endfor %}
{% endfor %}
{% endif %}
{% if table.paginate == 1 %}
{% if table.lines.pages < 2 %}
{% else %}
{% include 'pagination.html' %}
{% endif %}
{% endif %}
{% block scripts %}
{% endblock %}