The version of vichan running on lainchan.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
1.2KB

  1. <form action="?/{{ board }}/merge/{{ post }}" method="post">
  2. <input type="hidden" name="token" value="{{ token }}">
  3. <table>
  4. <tr>
  5. <th>
  6. {% trans 'Thread ID' %}
  7. </th>
  8. <td>
  9. &gt;&gt;&gt;{{ config.board_abbreviation|sprintf(board) }}{{ post }}
  10. </td>
  11. </tr>
  12. <tr>
  13. <th>{% trans 'Target board' %}</th>
  14. <td>
  15. <ul style="list-style:none;padding:0">
  16. {% for targetboard in boards %}
  17. <li>
  18. <input type="radio" name="board" value="{{ targetboard.uri }}" id="ban-board-{{ targetboard.uri }}" {% if boards|count == 2 %}checked{% endif %}>
  19. <label style="display:inline" for="ban-board-{{ targetboard.uri }}">
  20. {{ config.board_abbreviation|sprintf(targetboard.uri) }} - {{ targetboard.title|e }}
  21. </label>
  22. </li>
  23. {% endfor %}
  24. </ul>
  25. </td>
  26. </tr>
  27. <tr>
  28. <th>{% trans 'Target thread' %}</th>
  29. <td>
  30. <p>Please specify the thread you want to merge the thread with, if you specify a post, the thread of that post will be used.:</p>
  31. <input type="text" name="target_thread"/>
  32. </td>
  33. </tr>
  34. </table>
  35. <ul style="padding:0;text-align:center;list-style:none">
  36. <li><input type="submit" value="{% trans 'Merge thread' %}"></li>
  37. </ul>
  38. </form>