summaryrefslogtreecommitdiffstats
path: root/templates/menu.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/menu.html')
-rw-r--r--templates/menu.html20
1 files changed, 20 insertions, 0 deletions
diff --git a/templates/menu.html b/templates/menu.html
new file mode 100644
index 0000000..1a2de27
--- /dev/null
+++ b/templates/menu.html
@@ -0,0 +1,20 @@
+<div class="navbar-inner">
+ <a class="brand" href="/">KtT Shop System</a>
+
+ <ul class="nav">
+ <li class="{{{MENU.home}}}"><a href="/">Home</a></li>
+ <li class="{{{MENU.products}}}"><a href="/products">Products</a></li>
+ <li class="{{{MENU.stats}}} dropdown">
+ <a href="#" id="statsmenu" class="dropdown-toggle" data-toggle="dropdown">Statistics <b class="caret"></b></a>
+ <ul class="dropdown-menu">
+ <li><a href="/stats">Information</a></li>
+ <li><a href="/stats/stock">Graph: Stock</a></li>
+ <li><a href="/stats/profit_per_day">Graph: Profit / Day</a></li>
+ <li><a href="/stats/profit_per_weekday">Graph: Profit / Weekday</a></li>
+ <li><a href="/stats/profit_per_product">Graph: Profit / Product</a></li>
+ </ul>
+ </li>
+ </ul>
+
+ {{{AUTH}}}
+</div>