{% set file %} {% if submission["FILESAVED"] < 2 %}
Submission has no file
{% elif submission["TYPE"].lower() == "image" %}
{% elif submission["TYPE"].lower() == "music" %}
{% elif file_text is not none %}
{% autoescape false %}{{ file_text.strip() }}{% endautoescape %}
{% else %}
{{ filename|title }}
{% endif %} {% endset %}
{{ file }}

{{ submission["TITLE"] }}

{{ file }}
Tags
{% for tag in submission["TAGS"] %} {{ tag }} {% endfor %} {% if not submission["TAGS"] %} No tags {% endif %}
Favorites
{% for user in submission["FAVORITE"] %} {{ user }} {% endfor %} {% if not submission["FAVORITE"] %} No favorites {% endif %}
Mentions
{% for user in submission["MENTIONS"] %} {{ user }} {% endfor %} {% if not submission["MENTIONS"] %} No mentions {% endif %}
{% autoescape false %}{{ submission["DESCRIPTION"] }}{% endautoescape %}