diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2012-09-23 21:04:47 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2012-09-23 21:04:47 +0200 |
commit | f370ef06ad9db2e47edba02b99271137324997cf (patch) | |
tree | d432ea10ee77fc9a4165c685eefe9afd1714fcbf /module/web/templates/default | |
parent | fixed the dashboard (diff) | |
download | pyload-f370ef06ad9db2e47edba02b99271137324997cf.tar.xz |
added some animations, code for show/hiding items
Diffstat (limited to 'module/web/templates/default')
-rw-r--r-- | module/web/templates/default/dashboard.html | 6 | ||||
-rw-r--r-- | module/web/templates/default/setup.html | 16 |
2 files changed, 19 insertions, 3 deletions
diff --git a/module/web/templates/default/dashboard.html b/module/web/templates/default/dashboard.html index adcc6dc71..f6c6513aa 100644 --- a/module/web/templates/default/dashboard.html +++ b/module/web/templates/default/dashboard.html @@ -33,8 +33,8 @@ <b class="caret"></b>
</a>
<ul class="dropdown-menu">
- <li><a>Audio</a></li>
- <li><a>Video</a></li>
+ <li><a><i class="icon-ok"></i> Audio</a></li>
+ <li><a><i class="icon-remove"></i> Video</a></li>
<li><a>Archive</a></li>
</ul>
</li>
@@ -58,7 +58,7 @@ <a>Unfinished</a>
</li>
<li class="active" style="float: right;">
- <a>All</a>
+ <a href="#" id="show_active">All</a>
</li>
</ul>
<div id="dashboard">
diff --git a/module/web/templates/default/setup.html b/module/web/templates/default/setup.html new file mode 100644 index 000000000..e5c9f4b8c --- /dev/null +++ b/module/web/templates/default/setup.html @@ -0,0 +1,16 @@ +{% extends 'default/base.html' %} +{% block title %} + {{_("Setup")}} - {{ super()}} +{% endblock %} + +{% block content %} + <div class="hero-unit"> + <h1>You did it!</h1> + <p>pyLoad is running and ready for configuration.</p> + <p> + <a class="btn btn-primary btn-large"> + Go on + </a> + </p> + </div> +{% endblock %}
\ No newline at end of file |