diff options
author | Wugy <wugy@mally-soft.com> | 2009-12-21 18:15:56 +0100 |
---|---|---|
committer | Wugy <wugy@mally-soft.com> | 2009-12-21 18:15:56 +0100 |
commit | 7dd0c96037b0f91f761126d20e477e0e83e20825 (patch) | |
tree | d4cc7baa4e3fea8306a8ae79d2f726a226de7f78 /module/web/templates/default/home.html | |
parent | pause/start button works (diff) | |
download | pyload-7dd0c96037b0f91f761126d20e477e0e83e20825.tar.xz |
total progressbar bullshit
Diffstat (limited to 'module/web/templates/default/home.html')
-rw-r--r-- | module/web/templates/default/home.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/module/web/templates/default/home.html b/module/web/templates/default/home.html index 43cf16ae0..acc185444 100644 --- a/module/web/templates/default/home.html +++ b/module/web/templates/default/home.html @@ -21,13 +21,13 @@ Active Downloads <tr id="link_{{ link.id }}">
<td id="link_{{ link.id }}_name">{{ link.name }}</td>
<td id="link_{{ link.id }}_status">{{ link.status }}</td>
- <td id="link_{{ link.id }}_eta">{{ content.eta }} @ {{content.speed }}</td>
- <td id="link_{{ link.id }}_kbleft">{{ link.kbleft }}</td>
- <td id="link_{{ link.id }}_percent"><font id="aktiv_percent">{{ link.percent }}</font>% / {{ link.size }}</td>
+ <td id="link_{{ link.id }}_info">{{ link.info }}</td>
+ <td id="link_{{ link.id }}_kbleft">{{ link.size }}</td>
+ <td id="link_{{ link.id }}_percent"><font id="link_{{ link.id }}_aktiv_percent">{{ link.percent }}</font>% / <font id="link_{{ link.id }}_aktiv_percent">{{ link.kbleft }}</font><a href="#" onclick="javascript:$('#link_{{ link.id }}_pgb').progressBar(50);">load</a></td>
</tr>
<tr>
- <td colspan="5">
- <div id="link_{{ link.id }}_pgb" class="progress_bar" style="overflow: hidden; width: {{ link.percent }}%; display: block;"> </div>
+ <td colspan="5" class="ui-progressbar ui-widget ui-widget-content ui-corner-all">
+ <div id="link_{{ link.id }}_pgb" class="ui-progressbar-value ui-widget-header ui-corner-left" style="overflow: hidden; width: {{ link.percent }}%; display: block;"> </div>
</td>
</tr>
{% endfor %}
|