blob: 20f664e8f7661d5d0a2e87cfea22eecf295baa1a [file] [log] [blame]
lombardoffb37bca2018-05-03 16:20:04 +02001<!-- Left side column. contains the sidebar -->
2<aside class="main-sidebar" id="globalmenu">
3 <!-- sidebar: style can be found in sidebar.less -->
4 <section class="sidebar">
5 <!-- sidebar menu: : style can be found in sidebar.less -->
6 <ul class="sidebar-menu">
7 <li class="header">MAIN NAVIGATION</li>
8 {% url "home" as home_url %}
9 <li {% if request.get_full_path == home_url %} class="active" {% endif %} ><a href='{% url "home" %}'><i class="fa fa-home fa-fw"></i><span>Home</span></a></li>
10 {% url "projects:projects_list" as projects_list_url %}
lombardof33848292018-05-08 10:12:14 +020011 <li {% if request.get_full_path == projects_list_url %} class="active" {% endif %}><a href='{% url "projects:projects_list" %}'><i class="fa fa-th-list fa-fw"></i><span>Projects</span></a></li>
lombardoffb37bca2018-05-03 16:20:04 +020012 {% url "vim:list" as vims_list_url %}
13 <li {% if request.get_full_path == vims_list_url %} class="active" {% endif %}><a href='{% url "vim:list" %}'><i class="fa fa-th-list fa-fw"></i><span>VIM Accounts</span></a></li>
14
15
16
17 {% block left_sidebar_base %}
18
19 {% endblock %}
20 </ul>
21 </section>
22 <!-- /.sidebar -->
23</aside>