{% extends "base.html" %} {% block main %} {% include "components/thread_form.html" %}

{{ thread.title }}

{{ lists.userItem(request.user, small=True) }}
{{ thread.created.strftime('%Y-%m-%d %H:%M:%S') }}
{% for res in thread.res|sort(attribute='datetime') %}
#{{loop.index}}
{{ res.datetime.strftime('%Y-%m-%d %H:%M:%S') }}
{{ lists.userItem(res.user, small=True) }}
{{ res.parsed_data.message|hiroyuki|markdown }}
{% for image in res.parsed_data.images %} {% set s = uuid() %}
{% endfor %}
{% endfor %}
{% endblock %}