{% extends 'pybb/base.html' %} {% load i18n pybb_tags %} {% block content %} {% if post.is_topic_head %}

{% blocktrans with topic=post.topic %}Move topic "{{ topic }}"{% endblocktrans %}

{% else %}

{% blocktrans with topic=post.topic %}Split posts from topic "{{ topic }}"{% endblocktrans %}

{% endif %}
{% csrf_token %}
{% if not post.is_topic_head %} {% pybb_get_profile post.user as author %}
{{ post.body_html|safe|truncatewords_html:20 }}
{% endif %} {% include "pybb/form_errors.html" %} {% if form.move_to %} {% include "pybb/form_field.html" with field=form.move_to %} {% endif %} {% if form.number %} {% include "pybb/form_field.html" with field=form.number %} {% endif %} {% 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 %}

{% trans 'Cancel' %}

{% endblock content %}