{% extends "base.html" %} {% load i18n %} {% block content %} {% if threads %} {% for thread in threads %} {% if thread.image %}
{% endif %}
{{ thread.title }} (#{{ thread.id }}) [{{ thread.pub_time }}] [{% trans "View" %}]
{{ thread.text|truncatechars:300 }}
{% if thread.tags %} {% trans 'Tags' %}: {% for tag in thread.tags.all %} {{ tag.name }} {% endfor %} {% endif %}

{% endfor %} {% else %} No threads found.
{% endif %}
{% csrf_token %}
{% trans 'Title' %}
{{ form.title }}
{% trans 'Text' %}
{{ form.text }}
{% trans 'Image' %}
{{ form.image }}
{% trans 'Tags' %}
{{ form.tags }}
{% endblock %}