{% load pybb_tags %}
{% csrf_token %} {% include "pybb/form_errors.html" %} {% if form.name %} {% include "pybb/form_field.html" with field=form.name %} {% endif %} {% if form.slug %} {% include "pybb/form_field.html" with field=form.slug %} {% endif %} {% if form.login %} {% include "pybb/form_field.html" with field=form.login %} {% endif %} {% if form.body %} {% include "pybb/form_field.html" with field=form.body %} {% endif %}
{% for smile, url in form.available_smiles.items %} {% endfor %}
{% if request.user|pybb_may_create_poll and form.poll_type %} {% include "pybb/poll_edit_form.html" %} {% endif %}
 

{% include "pybb/_button_submit.html" %}