{% extends "base.html" %} {% load i18n %} {% load markup %} {% block head %} Neboard - {{ posts.0.title }} {% endblock %} {% block content %} {% if posts %}
{% for post in posts %} {% if posts.0.can_bump %}
{% else %}
{% endif %} {% if post.image %} {% endif %}
{% autoescape off %} {{ post.text.rendered }} {% endautoescape %}
{% if post.tags.all %} {% endif %}
{% endfor %}
{% else %} No thread found.
{% endif %} <<<<<<< local
{% csrf_token %}
{% trans "Reply to thread" %}
{% trans 'Title' %}
{{ form.title }}
{{ form.title.errors }}
{% trans 'Text' %}
{{ form.text }}
{{ form.text.errors }}
{% trans 'Image' %}
{{ form.image }}
{{ form.image.errors }}
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' %}. {% trans 'Last update: ' %}{{ posts.0.last_edit_time }} {% endblock %}