{% extends "base.html" %} {% block title %}{{ thread_title }} — Multithreaded{% endblock %} {% block head %}{% endblock %} {% block header %}{% include "partials/site_header.html" %}{% endblock %} {% block content %}
{% for post in posts %}
{% if !post.is_removed %} {% if post.can_endorse %}
{% endif %} {% if post.endorsement_count > 0 %} {% if post.is_endorsed || post.can_add_footnote || is_mod %} {{ post.endorsement_count }} {% endif %} {% endif %} {% if post.can_flag %}
flag
{% endif %} {% if post.can_remove %}
{% endif %}
{% endif %}
{{ post.body_html|safe }}
{% if !post.link_previews.is_empty() %}
{% for lp in post.link_previews %} {% if let Some(title) = lp.title %}{{ title }}{% endif %} {% if let Some(desc) = lp.description %}{{ desc }}{% endif %} {{ lp.url }} {% endfor %}
{% endif %} {% if !post.footnotes.is_empty() %}
{% for note in post.footnotes %}
footnote by {{ note.author_name }} ({{ note.timestamp }}): {{ note.body_html|safe }}
{% endfor %}
{% endif %} {% if post.can_add_footnote %}
add footnote
{% endif %}
{% endfor %}
{% include "partials/pagination.html" %} {% if !locked %} {% if session_user.is_some() %}

Reply

{% else %}
Login to reply.
{% endif %} {% endif %}
{% endblock %}