diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2012-10-05 21:24:32 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2012-10-05 21:24:32 +0200 |
commit | ece5113bf6a893a1ddc42ed8a450eda18dde0998 (patch) | |
tree | f21c1e6801ba9250a647b5e430bdb48576db17f5 /module/web/templates/default/dashboard.html | |
parent | updated lodash, tried to style package list (diff) | |
download | pyload-ece5113bf6a893a1ddc42ed8a450eda18dde0998.tar.xz |
worked on stylesheet
Diffstat (limited to 'module/web/templates/default/dashboard.html')
-rw-r--r-- | module/web/templates/default/dashboard.html | 19 |
1 files changed, 14 insertions, 5 deletions
diff --git a/module/web/templates/default/dashboard.html b/module/web/templates/default/dashboard.html index 6a5d18fdd..239ab47be 100644 --- a/module/web/templates/default/dashboard.html +++ b/module/web/templates/default/dashboard.html @@ -10,12 +10,21 @@ {% block head %}
<script type="text/template" id="template-package">
<div>
- Package <%= pid %>: <%= name %>
- <div class="package-graph"></div>
+ <div class="package-row first">
+ Package <%= pid %>: <%= name %>
+ <div class="package-graph"></div>
+ </div>
+ <div class="package-row second">
+ <span>
+ 56 Files (xy Finished, z Active, t Total)
+ </span>
+ </div>
- <a class="load"> Load</a>
- <a class="delete"> Delete</a>
- <a class="show-dialog"> Show</a>
+ <div class="package-row third">
+ <a class="load"> Load</a>
+ <a class="delete"> Delete</a>
+ <a class="show-dialog"> Show</a>
+ </div>
</div>
</script>
{% endblock %}
|