{% extends "base.html" %} {% load i18n %} {% block head %} Neboard {% endblock %} {% block content %} {% if posts %} {% for post in posts %}
{% if post.image %}
{% endif %}
{{ post.title }} (#{{ post.id }}) [{{ post.pub_time }}]
{{ post.get_parsed_text|linebreaksbr }}
{% if post.tags.all %}
{% trans 'Tags' %}: {% for tag in post.tags.all %} {{ tag.name }} {% endfor %}
{% endif %}
{% endfor %} {% else %} No threads found.
{% endif %}
{% trans "Reply to the thread" %}
{% csrf_token %}
{% trans 'Title' %}
{{ form.title }}
{% trans 'Text' %}
{{ form.text }}
{% trans 'Image' %}
{{ form.image }}
{% endblock %}