| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- <div class="sidebar">
- <!--
- Tip 1: You can change the color of the sidebar using: data-color="blue | green | orange | red"
- -->
- <div class="sidebar-wrapper">
- <div class="logo">
- <a href="javascript:void(0)" class="simple-text logo-mini">
- MS
- </a>
- <a href="javascript:void(0)" class="simple-text logo-normal">
- Markus Spring
- </a>
- </div>
- <ul class="nav">
- <li class="{% if 'index' in segment %} active {% endif %} ">
- <a href="/">
- <i class="tim-icons icon-chart-pie-36"></i>
- <p>Charts</p>
- </a>
- </li>
- <li class="{% if 'user' in segment %} active {% endif %}">
- <a href="/table">
- <i class="tim-icons icon-single-02"></i>
- <p>Touren-Tabelle</p>
- </a>
- </li>
- <li class="{% if 'icons' in segment %} active {% endif %}">
- <a href="/icons.html">
- <i class="tim-icons icon-atom"></i>
- <p>Icons</p>
- </a>
- </li>
- <!-- <li class="{% if 'map' in segment %} active {% endif %}"> -->
- <!-- <a href="/map.html"> -->
- <!-- <i class="tim-icons icon-pin"></i> -->
- <!-- <p>Maps</p> -->
- <!-- </a> -->
- <!-- </li> -->
- <li class="{% if 'notifications' in segment %} active {% endif %}">
- <a href="/notifications.html">
- <i class="tim-icons icon-bell-55"></i>
- <p>Notifications</p>
- </a>
- </li>
- <li class="{% if 'tables' in segment %} active {% endif %}">
- <a href="/tables.html">
- <i class="tim-icons icon-puzzle-10"></i>
- <p>Table List</p>
- </a>
- </li>
- <li class="{% if 'typography' in segment %} active {% endif %}">
- <a href="/typography.html">
- <i class="tim-icons icon-align-center"></i>
- <p>Typography</p>
- </a>
- </li>
- <!-- <li> -->
- <!-- <a href="/rtl.html"> -->
- <!-- <i class="tim-icons icon-world"></i> -->
- <!-- <p>RTL Support</p> -->
- <!-- </a> -->
- <!-- </li> -->
- <li>
- <a href="{{ url_for('authentication_blueprint.logout') }}">
- <i class="tim-icons icon-button-power"></i>
- <p>Logout</p>
- </a>
- </li>
- </ul>
- </div>
- </div>
|