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

« back to all changes in this revision

Viewing changes to deluge/ui/webui/templates/classic/tab_details.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
 
<table width="100%">
3
 
<!--long values-->
4
 
<!--<tr><td>&nbsp;</td></tr>-->
5
 
<tr colspan="3">
6
 
    <table>
7
 
    <tr><td class="info_label">$('Name'):</td>
8
 
        <td class="info_value">$torrent.name</td>
9
 
    </tr>
10
 
    <tr><td class="info_label">$('Hash'):</td>
11
 
        <td class="info_value">$torrent.id</td>
12
 
    </tr>
13
 
 
14
 
    <tr>
15
 
    <td class="info_label"><a href="/torrent/move/$torrent.id" target="_top">$('Path'):</td>
16
 
        <td class="info_value" title="$torrent.save_path">$crop_left(torrent.save_path, 200)</td>
17
 
    </tr>
18
 
 
19
 
    <tr>
20
 
    <td class="info_label">$_('Total Size'):</td>
21
 
    <td class="info_value">$fsize(torrent.total_size)</td>
22
 
    </tr>
23
 
 
24
 
    <tr>
25
 
    <td class="info_label">$_('# Of Files'):</td>
26
 
    <td class="info_value">$torrent.num_files</td>
27
 
    </tr>
28
 
 
29
 
    <tr><td class="info_label">$_('Tracker Status'):</td>
30
 
        <td class="info_value" title="$torrent.tracker_status">$(crop(torrent.tracker_status, 200)) </td>
31
 
    </tr>
32
 
 
33
 
    <tr><td class="info_label">$_('Tracker'):</td>
34
 
        <td class="info_value" title="$torrent.tracker">$(crop(torrent.tracker, 200))</td>
35
 
    </tr>
36
 
    <tr>
37
 
    <td class="info_label">$_('Private'):</td>
38
 
        <td class="info_value">$torrent.private</td>
39
 
    </tr>
40
 
 
41
 
 
42
 
    </table>
43
 
</tr>
44
 
</table>