{% extends "base.html" %} {% block content %} {% if threads %} {% for thread in threads %} {{ thread.title }}
{{ thread.text }}
View thread
{% endfor %} {% else %} No threads found.
{% endif %}
{% csrf_token %}
{{ form.title.errors }} {{ form.title }}
{{ form.text.errors }} {{ form.text }}
{{ form.image }}
{{ form.tags.errors}} {{ form.tags }}

{% endblock %}