2012-08-27 01:19:05 -04:00
|
|
|
<form action="?/{{ board }}/move/{{ post }}" method="post">
|
|
|
|
<input type="hidden" name="token" value="{{ token }}">
|
2012-05-19 04:27:45 -04:00
|
|
|
<table>
|
|
|
|
<tr>
|
|
|
|
<th>
|
|
|
|
{% trans 'Thread ID' %}
|
|
|
|
</th>
|
|
|
|
<td>
|
|
|
|
>>>{{ config.board_abbreviation|sprintf(board) }}{{ post }}
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th>
|
|
|
|
{% trans 'Leave shadow thread' %}
|
|
|
|
</th>
|
|
|
|
<td>
|
|
|
|
<input type="checkbox" name="shadow" checked>
|
|
|
|
<span class="unimportant">({% trans 'locks thread; replies to it with a link.' %})</span>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th>{% trans 'Target board' %}</th>
|
|
|
|
<td>
|
|
|
|
<ul style="list-style:none;padding:0">
|
|
|
|
{% for targetboard in boards if targetboard.uri != board %}
|
|
|
|
<li>
|
2012-08-27 01:19:05 -04:00
|
|
|
<input type="radio" name="board" value="{{ targetboard.uri }}" id="ban-board-{{ targetboard.uri }}" {% if boards|count == 2 %}checked{% endif %}>
|
2012-05-19 04:27:45 -04:00
|
|
|
<label style="display:inline" for="ban-board-{{ targetboard.uri }}">
|
|
|
|
{{ config.board_abbreviation|sprintf(targetboard.uri) }} - {{ targetboard.title|e }}
|
|
|
|
</label>
|
|
|
|
</li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
|
|
|
|
<ul style="padding:0;text-align:center;list-style:none">
|
|
|
|
<li><input type="submit" value="{% trans 'Move thread' %}"></li>
|
|
|
|
</ul>
|
|
|
|
</form>
|
|
|
|
|