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

« back to all changes in this revision

Viewing changes to deluge/ui/webui/templates/classic/torrent_info.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)
2
 
 
3
 
$:(render.header(_(torrent.state) + '/' + torrent.name))
4
 
<div class="panel" id="torrent_info">
5
 
<div class="button_bar">
6
 
$for id, title, image, flag, method, url, important in toolbar_items:
7
 
    $if (flag > 0) and (id != 'details'):
8
 
        $:render.part_button(method, (url + str(torrent.id)), title, '16/' + image)
9
 
</div>
10
 
$for id, title, tab in detail_tabs:
11
 
    <h3>$title</h3>
12
 
    $:render[tab](torrent)
13
 
 
14
 
<br>
15
 
</div>
16
 
 
17
 
$:render.footer()