modal.html 1017 B

1234567891011121314151617181920212223242526
  1. {% load i18n misago_forms %}
  2. <form method="POST">
  3. {% csrf_token %}
  4. <input type="hidden" name="action" value="split">
  5. {% for post in posts %}
  6. <input type="hidden" name="item" value="{{ post.pk }}">
  7. {% endfor %}
  8. <div class="modal-header">
  9. <button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">&times;</span><span class="sr-only">{% trans "Close" %}</span></button>
  10. <h4 class="modal-title" id="ajaxModalLabel">
  11. <span class="fa fa-arrow-right fa-fw"></span>
  12. {% trans "Split thread" %}
  13. </h4>
  14. </div>
  15. <div class="modal-body modal-form">
  16. {% form_row form.forum %}
  17. {% form_row form.thread_title %}
  18. </div>
  19. <div class="modal-footer text-left">
  20. <button class="btn btn-primary" name="submit">{% trans "Split thread" %}</button>
  21. <button class="btn btn-primary" name="follow">{% trans "Split and see new thread" %}</button>
  22. <button type="button" class="btn btn-default" data-dismiss="modal">{% trans "Cancel" %}</button>
  23. </div>
  24. </form>