{% extends "misago/threads/base.html" %} {% load i18n misago_forms %} {% block title %}{% trans "Merge threads" %} | {{ block.super }}{% endblock title %} {% block content %}
{% csrf_token %} {% for thread in threads %} {% endfor %}

{% blocktrans trimmed with forum=forum %} Merge threads in {{ forum }} {% endblocktrans %}

{% include "misago/form_errors.html" %}
    {% for thread in threads %}
  • {% if thread.is_pinned %} {% else %} {% endif %} {{ thread }}
  • {% endfor %}
{% form_row form.merged_thread_title %}
{% endblock content %}