{% extends "base.html" %} {% block content %}
threads / {{ thread.thread.title }}
{{ thread.thread.title }}
by {{ thread.author.username }} · {{ thread.thread.created_at }}
{{ thread.thread.body }}
{% 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 }}
{% endfor %} {% endif %} {% if let Some(user) = current_user %}
{% else %}
login to reply
{% endif %} {% endblock %}