{% extends "base.html" %} {% load i18n %} {% load markup %} {% block head %} Neboard {% endblock %} {% block content %} {% if threads %} {% for thread in threads %}
{% if thread.image %}
{% endif %}
{{ thread.title }} (#{{ thread.id }}) [{{ thread.pub_time }}] [{% trans "View" %}] {% autoescape off %} {{ thread.text.rendered|truncatechars:300 }} {% endautoescape %}
{{ thread.get_reply_count }} {% trans 'replies' %}, {{ thread.get_images_count }} {% trans 'images' %}, {{ thread.get_gets_count }} {% trans 'gets' %}. {% if thread.tags.all %} {% trans 'Tags' %}: {% for tag in thread.tags.all %} {{ tag.name }} {% endfor %} {% endif %}
{% endfor %} {% else %} No threads found.
{% endif %}
{% csrf_token %}
{% trans "Create new thread" %}
{% trans 'Title' %}
{{ form.title }}
{% trans 'Text' %}
{{ form.text }}
{% trans 'Image' %}
{{ form.image }}
{% trans 'Tags' %}
{{ form.tags }}
Tags must be delimited by spaces. Text or image is required
Use markdown syntax for posting.
{% endblock %}