~cmiller/ubuntu/quantal/deluge/fix-parameter-move-storage

« back to all changes in this revision

Viewing changes to deluge/ui/webui/templates/classic/torrent_move.html

  • Committer: Bazaar Package Importer
  • Author(s): Cristian Greco
  • Date: 2009-11-13 02:39:45 UTC
  • mfrom: (4.1.7 squeeze)
  • Revision ID: james.westby@ubuntu.com-20091113023945-te1bybo2912ejzuc
Tags: 1.2.0~rc3-4
* debian/control: bump build-dep on python-setuptools to (>= 0.6c9).
* debian/patches:
  - 25_r5921_fastresume_files.patch
    new, should fix problems with fresh configs;
  - 30_r5931_ipc_lockfile.patch:
    new, should fix an issue where Deluge will fail to start if there is a
    stale ipc lockfile. (Closes: #555849)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
$def with (torrent_ids, torrent_list, form, error)
2
 
$:render.header(_("Remove torrent"))
3
 
<div class="panel">
4
 
<form method="POST" action='$base/torrent/move/$torrent_ids'>
5
 
<div id="del_torrent">
6
 
<h2>$_("Move torrent")</h2>
7
 
<ul>
8
 
$for torrent in torrent_list:
9
 
    <li>$torrent.name ($torrent.save_path)</li>
10
 
</ul>
11
 
<!--
12
 
$if error:
13
 
    <div class="error">$error</div>
14
 
-->
15
 
 
16
 
$:form.as_table()
17
 
 
18
 
<input type="submit" name="submit" value="$_('Move')" class="form_input">
19
 
 
20
 
</form>
21
 
</div>
22
 
$:render.footer()
 
 
b'\\ No newline at end of file'