{% extends "base.html" %} {% load i18n %} {% load markup %} {% block head %} Neboard - {{ posts.0.title }} {% endblock %} {% block content %} {% if posts %} {% for post in posts %}
{% if post.image %}
{% endif %}
{{ post.title }} (#{{ post.id }}) [{{ post.pub_time }}] {% if post.is_get %} {% trans "Get!" %} {% endif %} {% 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 %} {% block metapanel %} {{ posts.0.get_reply_count }} {% trans 'replies' %}, {{ posts.0.get_images_count }} {% trans 'images' %}, {{ posts.0.get_gets_count }} {% trans 'gets' %} {% endblock %}