{% extends "base.html" %} {% load i18n %} {% load markup %} {% block head %} Neboard {% endblock %} {% block content %} {% if posts %} {% for post in posts %}
{% if post.image %}
{% endif %}
{{ post.title }} (#{{ post.id }}) [{{ post.pub_time }}] {% autoescape off %} {{ post.text.rendered }} {% endautoescape %}
{% if post.tags.all %}
{% trans 'Tags' %}: {% for tag in post.tags.all %} {{ tag.name }} {% endfor %}
{% endif %}
{% endfor %} {% else %} No threads found.
{% endif %}
{% csrf_token %}
{% trans "Reply to thread" %}
{% trans 'Title' %}
{{ form.title }}
{% trans 'Text' %}
{{ form.text }}
{% trans 'Image' %}
{{ form.image }}
Use markdown syntax for posting.
Example: *italic*, **bold**
Insert quotes with ">"
{% endblock %}