{{ basepath.split('/')[-1] }}
 
{% for key, value in data_dict.items() %} {% if value is mapping %}
{{ key }}
{% elif value is iterable and value is not string %}
{{ key }}
{% elif key == 'json_path' %}
JSON Data
(↻ each time you view it)
{% elif key == 'csv_path' %}
CSV Data
(↻ each time you view it)
{% else %}
{{ key }}
{{ value }}
{% endif %} {% endfor %}