mirror of
https://github.com/codex-storage/deluge.git
synced 2025-01-29 12:45:45 +00:00
26 lines
754 B
HTML
26 lines
754 B
HTML
$def with (torrent)
|
|
$:render.header(_("Remove %s ") % torrent.name)
|
|
<div class="panel">
|
|
<form method="POST" action='/torrent/delete/$torrent.id'>
|
|
<div id="del_torrent">
|
|
|
|
$(_("Remove %s?") % torrent.name)
|
|
<div class="form_row2">
|
|
<span class="form_label2">
|
|
<input type="checkbox" name="torrent_also" class="form_input" checked
|
|
value="1">$_('Delete .torrent file')</span>
|
|
</div>
|
|
<div class="form_row2">
|
|
<span class="form_label2">
|
|
<input type="checkbox" name="data_also" class="form_input"
|
|
value="1">$_('Delete downloaded files.')</span>
|
|
</div>
|
|
<div class="form_row2">
|
|
<span class="form_label2"></span>
|
|
<input type="submit" name="submit"
|
|
value="$_('Remove')" class="form_input">
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
$:render.footer() |