{% if text_contents|length > 0 %}
{% for text_content in text_contents %}
{% if text_content.url_info %}
website screenshot
{% endif %} {% if text_content.file_info and (text_content.file_info.mime_type == "image/png" or text_content.file_info.mime_type == "image/jpeg") %}
{{ text_content.file_info.file_name }}
{% endif %}

{% if text_content.url_info %} {{ text_content.url_info.title }} {% elif text_content.file_info %} {{ text_content.file_info.file_name }} {% else %} {{ text_content.text }} {% endif %}

{{ text_content.created_at | datetimeformat(format="short", tz=user.timezone) }}

{{ text_content.category }}
{% if text_content.url_info %} {% include "icons/link_icon.html" %} {% endif %}

{{ text_content.instructions }}

{% endfor %}
{% else %}
No content found.
{% endif %}