{% set table_short %}{{ table[:-1] }}{% endset %}
{{ title }}
New Field
{{ columns_table[0].title() }}
{% for col in columns_table[1:] %}
{{ col.title() }}
{% endfor %}
Order
+
Search
{% if results %}
{% set navigation %} Results: {{ offset }}-{{ offset + results|length }} of {{ results_total }} ยท Page {{ (offset // limit) + 1 }}
First
Prev
New Search
= results_total }}> Next
= results_total }}> Last
{% endset %} {{ navigation }}
{% for column in columns_results %}
{{ column }}
{% endfor %}
{% for item in results %}
{% for column in columns_results %}
{% if column == "AUTHOR" %}
{{ item[column] }}
{% else %}
{{ " ".join(item[column].split(",")) if column in columns_list else item[column] }}
{% endif %}
{% endfor %}
{% endfor %}
{% endif %}