This commit is contained in:
Martijn Voncken 2008-04-08 20:16:50 +00:00
commit 622a0053d8
3 changed files with 10 additions and 6 deletions

View file

@ -18,7 +18,7 @@ $def with (torrent)
</tr> </tr>
<tr> <tr>
<td class="info_label">$('Save Path'):</td> <td class="info_label"><a href="/torrent/move/$torrent.id" target="_top">$('Save Path'):</td>
<td class="info_value" title="$torrent.save_path">$crop_left(torrent.save_path, 200)</td> <td class="info_value" title="$torrent.save_path">$crop_left(torrent.save_path, 200)</td>
</table> </table>
</tr> </tr>

View file

@ -9,14 +9,12 @@ $altrow(True)
</tr> </tr>
$for tracker in torrent.trackers: $for tracker in torrent.trackers:
<tr class="$altrow()" > <tr class="$altrow()" >
<td > <td><input type="text" name="tier" value="$tracker['tier']" style="width:20px"/>
<input type="text" name="tier" value="$tracker['tier']" style="width:20px"/>
</td> </td>
<td><input type="text" name="url" value="$tracker['url']" style="width:400px"//></td> <td><input type="text" name="url" value="$tracker['url']" style="width:400px"//></td>
</tr> </tr>
<tr class="tab_$altrow()" > <tr class="$altrow()" >
<td > <td><input type="text" name="tier" value="$(tracker['tier'] + 1)" style="width:20px"/>
<input type="text" name="tier" value="$(tracker['tier'] + 1)" style="width:20px"/>
</td> </td>
<td><input type="text" name="url" value="" style="width:400px"//></td> <td><input type="text" name="url" value="" style="width:400px"//></td>
</tr> </tr>

View file

@ -200,6 +200,7 @@ div.progress_bar{
} }
/*info panel(inner):*/ /*info panel(inner):*/
#info_panel_div { #info_panel_div {
width:100%; width:100%;
margin-top:20px; margin-top:20px;
@ -210,6 +211,9 @@ div.progress_bar{
-moz-border-radius:5px; -moz-border-radius:5px;
/*float: right;*/ /*float: right;*/
} }
#torrent_info_tabs {
background-color:#B5EDBC
}
#torrent_info tr.head{ #torrent_info tr.head{
background-color:#C3D9FF; background-color:#C3D9FF;
@ -221,6 +225,8 @@ div.progress_bar{
background-color:#C3D9FF; background-color:#C3D9FF;
} }
td.info_label { td.info_label {
width:100px; width:100px;
} }