-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This will be used to add sidebar content for the panel
- Loading branch information
Showing
2 changed files
with
30 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{% load static %} | ||
|
||
<aside class="main-sidebar elevation-4 {{ jazzmin_ui.sidebar_classes }}" id="jazzy-sidebar"> | ||
<a href="{% url 'admin:index' %}" class="brand-link {{ jazzmin_ui.brand_classes }}" id="jazzy-logo"> | ||
<img src="{% static jazzmin_settings.site_logo %}" alt="{{ jazzmin_settings.site_header }} Logo" class="{{ jazzmin_settings.site_logo_classes }} brand-image elevation-3" style="opacity: .8"> | ||
<span class="brand-text font-weight-light">{{ jazzmin_settings.site_brand }}</span> | ||
</a> | ||
|
||
<div class="sidebar"> | ||
<div class="user-panel mt-3 pb-3 mb-3 d-flex"> | ||
</div> | ||
|
||
<nav class="mt-2"> | ||
<ul class="nav nav-pills nav-sidebar flex-column {{ jazzmin_ui.sidebar_list_classes }}" data-widget="treeview" role="menu" data-collapsible="false"> | ||
|
||
<li class="nav-item"> | ||
<a href="{% url 'admin:index' %}" class="nav-link"> | ||
<i class="nav-icon fas fa-th-large"></i> | ||
<p>Dashboard</p> | ||
</a> | ||
</li> | ||
|
||
</ul> | ||
</nav> | ||
</div> | ||
</aside> |