blob: 9741451a43f7e16f050986fb2537f0884a4da336 [file] [log] [blame]
Rushabh Mehtabd7f7232012-06-15 14:00:06 +05301{#
2 requires, brand, top_bar_items, footer_items, copyright, content
3#}
4
Anand Doshi51146c02012-07-12 18:41:12 +05305{% extends "html/base.html" %}
Rushabh Mehtabd7f7232012-06-15 14:00:06 +05306
7{% block body %}
Rushabh Mehtabd7f7232012-06-15 14:00:06 +05308 <header>
Rushabh Mehta1c8ab8a2012-12-10 14:56:45 +05309 </header>
10 <div id="body_div">
11 <div class="navbar-wrapper">
12 <div class="navbar navbar-inverse"
13 style="margin-bottom: 0px;">
Rushabh Mehtabd7f7232012-06-15 14:00:06 +053014 <div class="navbar-inner">
15 <div class="container">
16 <a class="brand" href="index.html">{{ brand }}</a>
17 <ul class="nav">
18 {% for page in top_bar_items %}
19 {% if not page.parent_label %}
Rushabh Mehtaa9302b02012-09-05 12:32:19 +053020 <li data-label="{{ page.label }}"
21 {% if page.child_items %}
22 class="dropdown"
23 {% endif %}>
24 <a href="{{ page.url or '#' }}"
25 {% if page.child_items %}
26 class="dropdown-toggle"
27 onclick="return false;"
Rushabh Mehta0a0be772012-09-05 13:48:45 +053028 data-toggle="dropdown"
Rushabh Mehtaa9302b02012-09-05 12:32:19 +053029 {% endif %}
30 {{ page.target or ''}}>
Rushabh Mehtabd7f7232012-06-15 14:00:06 +053031 {{ page.label }}
32 {% if page.child_items %}
Rushabh Mehtaa9302b02012-09-05 12:32:19 +053033 <b class="caret"></b>
34 </a>
Rushabh Mehtabd7f7232012-06-15 14:00:06 +053035 <ul class="dropdown-menu">
36 {% for child in page.child_items %}
37 <li data-label="{{ child.label }}">
Rushabh Mehtaa9302b02012-09-05 12:32:19 +053038 <a href="{{ child.url }}" {{ child.target or '' }}>
39 {{ child.label }}
40 </a>
41 </li>
Rushabh Mehtabd7f7232012-06-15 14:00:06 +053042 {% endfor %}
43 </ul>
Rushabh Mehtaa9302b02012-09-05 12:32:19 +053044 {% else %}
45 </a>
Rushabh Mehtabd7f7232012-06-15 14:00:06 +053046 {% endif %}
Rushabh Mehtaa9302b02012-09-05 12:32:19 +053047 </li>
Rushabh Mehtabd7f7232012-06-15 14:00:06 +053048 {% endif %}
49 {% endfor %}
50 </ul>
Rushabh Mehta55fd5f32012-09-26 19:00:02 +053051 <img src="lib/images/ui/spinner.gif" id="spinner"/>
Rushabh Mehtabd7f7232012-06-15 14:00:06 +053052 <ul class="nav pull-right">
Anand Doshi51146c02012-07-12 18:41:12 +053053 <li id="login-topbar-item"><a href="login.html">Login</a></li>
Rushabh Mehtabd7f7232012-06-15 14:00:06 +053054 </ul>
55 </div>
56 </div>
Rushabh Mehta1c8ab8a2012-12-10 14:56:45 +053057 </div>
58 </div>
59 <script>$('.dropdown-toggle').dropdown()</script>
60
Rushabh Mehtabd7f7232012-06-15 14:00:06 +053061 <div class="content" id="page-{{ name }}" style="display: block;">
62 {% block content %}
63 {% endblock %}
64 </div>
65 </div>
66 <footer><div class="web-footer">
67 <div class="web-footer-menu"><ul>
68 {% for item in footer_items %}
69 <li><a href="{{ item.url }}" {{ item.target }}
70 data-label="{{ item.label }}">{{ item.label }}</a></li>
71 {% endfor %}
72 </ul></div>
Anand Doshi51146c02012-07-12 18:41:12 +053073 {% if copyright %}
Rushabh Mehtac50f0882012-12-10 18:25:30 +053074 <div class="web-footer-copyright">&copy; {{ copyright }}</div>
Anand Doshi51146c02012-07-12 18:41:12 +053075 {% endif %}
Rushabh Mehtac50f0882012-12-10 18:25:30 +053076 <div class="web-footer-powered">Powered by <a href="https://erpnext.com">ERPNext.com</a></div>
Rushabh Mehtabd7f7232012-06-15 14:00:06 +053077 </div>
78 </footer>
79
80{% endblock %}