{% extends "base.html" %} {% block content %}
threads :: {{ thread.thread.title }}
{{ thread.thread.title }}
by {{ thread.author.username }} · {{ thread.thread.created_at }}
{{ thread.thread.body|render_markdown|safe }}
{% if let Some(error) = error %}
{{ error }}
{% endif %} {% if !posts.is_empty() %}
replies
{% for pwa in posts %}
by {{ pwa.author.username }} · {{ pwa.post.created_at }}
{{ pwa.post.body|render_markdown|safe }}
{% endfor %} {% endif %} {% if let Some(user) = current_user %}
markdown is supported
{% else %}
login to reply
{% endif %} {% endblock %}