mirror of
https://github.com/Eggbertx/gochan.git
synced 2025-08-13 11:26:22 -07:00
17 lines
No EOL
883 B
HTML
17 lines
No EOL
883 B
HTML
{{template "page_header.html" .}}
|
|
<form action="{{webPath "/util"}}" method="POST" id="main-form">
|
|
<input name="srcboardid" type="hidden" value="{{.srcBoard.ID}}" />
|
|
<input name="postid" type="hidden" value="{{.postid}}" />
|
|
<input name="domove" type="hidden" value="1" />
|
|
<input type="hidden" name="srcboardid" value="{{.srcBoard.ID}}" />
|
|
<input type="hidden" name="password" value="{{.password}}" />
|
|
<table>
|
|
<tr><td>Source board:</td><td>/{{.srcBoard.Dir}}/</td></tr>
|
|
<tr><td>Desination board:</td><td><select name="destboardid" id="">
|
|
{{range $b,$board := .destBoards}}<option value="{{$board.ID}}">/{{$board.Dir}}/ - {{$board.Title}}</option>{{end}}
|
|
</select></td></tr>
|
|
</table>
|
|
<input type="submit" value="Move thread" />
|
|
<input type="button" value="Cancel" onclick="window.location = '{{webPathDir .srcBoard.Dir}}'">
|
|
</form>
|
|
{{- template "page_footer.html" .}} |