{% extends "base.html" %} {% load i18n %} {% load markup %} {% block head %} {% if tag %} Neboard - {{ tag }} {% else %} Neboard {% endif %} {% endblock %} {% block content %} {% if tag %}

{{ tag }}

{% endif %} {% if threads %} {% for thread in threads %}
{% if thread.can_bump %}
{% else %}
{% endif %} {% if thread.image %} {% endif %}
{% autoescape off %} {{ thread.text.rendered|truncatewords_html:50 }} {% endautoescape %}
{% if thread.get_last_replies %}
{% for post in thread.get_last_replies %} {% if thread.can_bump %}
{% else %}
{% endif %} {% if post.image %} {% endif %}
{% autoescape off %} {{ post.text.rendered|truncatewords_html:50 }} {% endautoescape %}
{% 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 %} {% block metapanel %} Neboard 2013-05 (dev) {% trans "Pages:" %} {% for page in pages %} [{{ page }}] {% endfor %} {% endblock %}