-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
dnikolay-ebc
committed
Jun 28, 2022
1 parent
646808e
commit db8081c
Showing
2 changed files
with
46 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,34 @@ | ||
<div class="d-flex flex-column col-auto"> | ||
<div id="sidebar" class="collapse collapse-horizontal navbar-expand-lg show border-end"> | ||
<div class="sidebar-nav bg-grey bg-opacity-75"> | ||
<ul class="container-fluid list-group-horizontal"> | ||
<a href="{% url "projects" %}" class="list-group-item align-content-center justify-content-center border-bottom py-2"> | ||
<i class="bi bi-kanban"></i> | ||
Projects | ||
</a> | ||
<a href="#" class="list-group-item align-content-center justify-content-center border-bottom py-2"> | ||
<i class="bi bi-server"></i> | ||
Entities | ||
</a> | ||
<a href="#" class="list-group-item align-content-center justify-content-center border-bottom py-2"> | ||
<i class="bi bi-server"></i> | ||
Devices | ||
</a> | ||
<a href="#" class="list-group-item align-content-center justify-content-center border-bottom py-2"> | ||
<i class="bi bi-alarm"></i> | ||
Alarming | ||
</a> | ||
<div id="sidebar" class="collapse collapse-horizontal show border-end"> | ||
<div class="sidebar-nav bg-grey"> | ||
<ul class="nav nav-flush flex-column mb-auto text-center"> | ||
<li class="nav-item border-bottom d-inline-flex"> | ||
<a href="{% url "projects" %}" | ||
class="nav-link py-md-2"> | ||
<i class="bi bi-kanban"></i> | ||
<span class="d-none d-md-inline-flex">Projects</span> | ||
</a> | ||
</li> | ||
</ul> | ||
|
||
{# <ul class="container-fluid list-group-horizontal">#} | ||
{# <a href="{% url "projects" %}"#} | ||
{# class="list-group-item align-content-center justify-content-center border-bottom py-2">#} | ||
{# <i class="bi bi-kanban"></i>#} | ||
{# Projects#} | ||
{# </a>#} | ||
{# <a href="#" class="list-group-item align-content-center justify-content-center border-bottom py-2">#} | ||
{# <i class="bi bi-server"></i>#} | ||
{# Entities#} | ||
{# </a>#} | ||
{# <a href="#" class="list-group-item align-content-center justify-content-center border-bottom py-2">#} | ||
{# <i class="bi bi-server"></i>#} | ||
{# Devices#} | ||
{# </a>#} | ||
{# <a href="#" class="list-group-item align-content-center justify-content-center border-bottom py-2">#} | ||
{# <i class="bi bi-alarm"></i>#} | ||
{# Alarming#} | ||
{# </a>#} | ||
{# </ul>#} | ||
</div> | ||
</div> | ||
</div> |