diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2012-09-17 15:46:42 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2012-09-17 15:46:42 +0200 |
commit | 68f1510f5a6ab632db19fc63f29c0475de9feb9d (patch) | |
tree | 7be8c9c3890465128a50ad8c6880d70ed7720bc7 /module/web/templates/default/dashboard.html | |
parent | added bootstrap (diff) | |
download | pyload-68f1510f5a6ab632db19fc63f29c0475de9feb9d.tar.xz |
nav + search bar for dashboard
Diffstat (limited to 'module/web/templates/default/dashboard.html')
-rw-r--r-- | module/web/templates/default/dashboard.html | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/module/web/templates/default/dashboard.html b/module/web/templates/default/dashboard.html new file mode 100644 index 000000000..a962011cd --- /dev/null +++ b/module/web/templates/default/dashboard.html @@ -0,0 +1,34 @@ +{% extends 'default/base.html' %}
+{% block require %}
+ App.initPackageTree();
+{% endblock %}
+
+{% block content %}
+ <ul id="dash-nav" class="nav nav-pills">
+ <li class="active">
+ <a class="active">All</a>
+ </li>
+ <li>
+ <a>Active</a>
+ </li>
+ <li class="dropdown">
+ <a class="dropdown-toggle"
+ data-toggle="dropdown"
+ href="#">
+ Dropdown
+ <b class="caret"></b>
+ </a>
+ <ul class="dropdown-menu">
+ <!-- links -->
+ </ul>
+ </li>
+ <li style="float: right;">
+ <form class="form-search">
+ <div class="input-append">
+ <input type="text" class="span2 search-query">
+ <button type="submit" class="btn">{{ _("Search") }}</button>
+ </div>
+ </form>
+ </li>
+ </ul>
+{% endblock %}
\ No newline at end of file |