{% extends "sora/layout.html" %} {% load i18n %} {% load url from future %} {% import "_forms.html" as form_theme with context %} {% import "sora/macros.html" as macros with context %} {% block title %}{% if thread is defined -%} {{ macros.page_title(title=_("Move Thread"),parent=thread.name) }} {%- else -%} {{ macros.page_title(title=_("Move Threads"),parent=forum.name) }} {%- endif %}{% endblock %} {% block breadcrumb %}{{ super() }} / {% for parent in parents %}
  • {{ parent.name }} /
  • {% endfor %}
  • {{ forum.name }} /
  • {% if thread is defined %}
  • {{ thread.name }} /
  • {% trans %}Move Thread{% endtrans %} {% else %}
  • {% trans %}Move Threads{% endtrans %} {% endif %} {%- endblock %} {% block content %}
    {% if message %}{{ macros.draw_message(message) }}{% endif %}
    {% if thread is defined %} {% else %} {% for thread in threads -%} {% endfor %} {% endif %} {{ form_theme.form_widget(form, width=8) }}
    {% trans %}Cancel{% endtrans %}
    {% endblock %}