1
0
Fork 0
mirror of https://github.com/retspen/webvirtcloud synced 2024-11-01 12:04:15 +00:00
webvirtcloud/templates/sidebar.html

18 lines
1.2 KiB
HTML
Raw Normal View History

2015-02-27 08:53:51 +00:00
{% load i18n %}
{% load tags_active %}
<div class="col-sm-3 col-md-2 sidebar">
<a class="logo" href="{% url 'instances' %}">WebVirtCloud</a>
<hr>
<ul class="nav nav-sidebar">
<li {% active request "^/instance" %}><a href="{% url 'instances' %}"><span class="glyphicon glyphicon-th" aria-hidden="true"></span></a></li>
2015-03-02 15:31:25 +00:00
{% if request.user.is_superuser %}
<li {% active request "^/compute" %}><a href="{% url 'computes' %}"><span class="glyphicon glyphicon-tasks" aria-hidden="true"></span></a></li>
<li {% active request "^/user" %}><a href="{% url 'users' %}"><span class="glyphicon glyphicon-user" aria-hidden="true"></span></a></li>
2015-03-03 09:34:09 +00:00
<li {% active request "^/showlogs" %}><a href="{% url 'showlogs' %}"><span class="glyphicon glyphicon-list-alt" aria-hidden="true"></span></a></li>
2015-03-02 15:31:25 +00:00
{% endif %}
2015-02-27 08:53:51 +00:00
<li class="bottom-sticky">
<a href="#"><span class="glyphicon glyphicon-cog" aria-hidden="true"></span></a>
<a href="{% url 'logout' %}"><span class="glyphicon glyphicon-log-out" aria-hidden="true"></span></a>
</li>
</ul>
</div>