/usr/share/rtpg-www/templates/default/prop.info.tt.html is in rtpg-www 0.2.11-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 | <table class="downloaded">
<colgroup>
<col width="10%"/>
<col width="80%"/>
<col width="10%"/>
</colgroup>
<thead>
<tr>
<th>[% gettext('Downloaded') %]</th>
<td class="percent">
<div class="percent" style="width: [% data.info.percent %];" />
</td>
<td class="spercent">[% data.info.percent %]</td>
</tr>
</thead>
</table>
<h4>[% gettext('Transfer') %]</h4>
<table class="transfer">
<colgroup>
<col width="23%"/>
<col width="10%"/>
<col width="23%"/>
<col width="10%"/>
<col width="24%"/>
<col width="10%"/>
</colgroup>
<tbody>
<tr>
<th>[% gettext('Downloaded') %]</th>
<td>[% data.info.bytes_done.as_human_size %]</td>
<th>[% gettext('Down Speed') %]</th>
<td>[% data.info.down_rate.as_human_speed %]</td>
<th>[% gettext('Peers connected') %]</th>
<td>
[% data.info.peers_connected %]
[% gettext('from') %]
[% data.info.peers_max %]
</td>
</tr>
<tr>
<th>[% gettext('Uploaded') %]</th>
<td>[% data.info.up_total.as_human_size %]</td>
<th>[% gettext('Up Speed') %]</th>
<td>[% data.info.up_rate.as_human_speed %]</td>
<th>[% gettext('Peers not connected') %]</th>
<td>[% data.info.peers_not_connected %]</td>
</tr>
</tbody>
</table>
<h4>[% gettext('Tracker') %]</h4>
<table class="tracker">
<colgroup>
<col width="10%"/>
<col width="90%"/>
</colgroup>
<tbody>
<tr>
<th>[% gettext('Message') %]</th>
<td class="message">[% data.info.message %]</td>
</tr>
</tbody>
</table>
<h4>[% gettext('General') %]</h4>
<table class="general">
<colgroup>
<col width="10%"/>
<col width="40%"/>
<col width="10%"/>
<col width="40%"/>
</colgroup>
<tbody>
<tr>
<th>[% gettext('Directory') %]</th>
<td>[% data.info.directory %]</td>
<th>[% gettext('Chunks') %]</th>
<td>
[% data.info.size_chunks %]
[% gettext('x') %]
[% data.info.chunk_size.as_human_size %]
([% data.info.completed_chunks %] [% gettext('done') %])
</td>
</tr>
<tr>
<th>[% gettext('Total size') %]</th>
<td>
[% data.info.size_bytes.as_human_size %]
([% data.info.bytes_done.as_human_size %]
[% gettext('done') %] )
<!-- Need new version of libxmlrpc for show correctly:
[% data.info.free_diskspace.as_human_size %]
[% gettext('free diskspace') %]
[% IF data.info.low_space %]
,
[% gettext('need more') %]
[% data.info.low_space.as_human_size %]
<div class="lds" title="[% gettext('Low disk space') %]">
</div>
[% END %]
-->
</td>
<th>[% gettext('Hash') %]</th>
<td>[% data.info.hash %]</td>
</tr>
<tr>
<th>[% gettext('Created On') %]</th>
<td>[% data.info.creation_date.as_human_datetime %]</td>
<th>[% gettext('Local ID') %]</th>
<td>[% data.info.local_id %]</td>
</tr>
<tr>
<th>[% gettext('Comment') %]</th>
<td>[% data.info.name %]</td>
<th>[%# %]</th>
<td>[%# %]</td>
</tr>
</tbody>
</table>
|