Skip to content

Commit 7541054

Browse files
committed
v1.0.19 - Fix Sidebar
1 parent bf99560 commit 7541054

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# CHANGELOG
22

3+
## [1.0.19] 2025-04-12
4+
### Changes
5+
6+
- Fix Sidebar
7+
38
## [1.0.18] 2025-04-12
49
### Changes
510

admin_black/templates/includes/menu-list.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
</a>
88
</li>
99

10-
{% request.user.is_authenticated %}
10+
{% if request.user.is_authenticated %}
1111
<li>
1212
<a href="{% url 'logout' %}">
1313
<i class="tim-icons icon-button-power"></i>

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
setup(
1010
name='django-admin-black',
11-
version='1.0.18',
11+
version='1.0.19',
1212
zip_safe=False,
1313
packages=find_packages(),
1414
include_package_data=True,

0 commit comments

Comments
 (0)