summaryrefslogtreecommitdiffstats
path: root/pyload/web/app/templates/default/header/progress.html
diff options
context:
space:
mode:
authorGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2013-06-13 12:13:02 +0200
committerGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2013-06-13 12:13:02 +0200
commit126f795463973ac78d909ddf9d470eaae5d44207 (patch)
tree55e211a35b2144e16a07906941cadb3f4f06a659 /pyload/web/app/templates/default/header/progress.html
parentimproved webui built script (diff)
downloadpyload-126f795463973ac78d909ddf9d470eaae5d44207.tar.xz
converted templates to default mustache syntax
Diffstat (limited to 'pyload/web/app/templates/default/header/progress.html')
-rw-r--r--pyload/web/app/templates/default/header/progress.html18
1 files changed, 9 insertions, 9 deletions
diff --git a/pyload/web/app/templates/default/header/progress.html b/pyload/web/app/templates/default/header/progress.html
index 65ae9a880..4ef5a1cd6 100644
--- a/pyload/web/app/templates/default/header/progress.html
+++ b/pyload/web/app/templates/default/header/progress.html
@@ -1,14 +1,14 @@
-<% name %>
-<span class="pull-right"><% plugin %></span>
+{{ name }}
+<span class="pull-right">{{ plugin }}</span>
<div class="progress">
- <div class="bar" style="width: <% percent %>%"></div>
+ <div class="bar" style="width: {{ percent }}%"></div>
</div>
-<%= if downloading %>
-<% formatSize done %> of <% formatSize total %> (<% formatSize download.speed %>/s)
-<% else %>
-<% statusmsg %>
-<%/if%>
+{{#if downloading }}
+{{ formatSize done }} of {{ formatSize total }} ({{ formatSize download.speed }}/s)
+{{ else }}
+{{ statusmsg }}
+{{/if}}
<span class="pull-right">
- <% formatTime eta %>
+ {{ formatTime eta }}
</span> \ No newline at end of file