[ADD] User setting to keep the sidebar menu minimized

This commit is contained in:
Peter Pfeufer
2025-10-15 01:13:42 +02:00
parent 92a1bd40a3
commit 295361a541
9 changed files with 122 additions and 3 deletions

View File

@@ -0,0 +1,22 @@
# Generated by Django 4.2.25 on 2025-10-14 22:02
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("authentication", "0024_alter_userprofile_language"),
]
operations = [
migrations.AddField(
model_name="userprofile",
name="minimize_sidebar",
field=models.BooleanField(
default=False,
help_text="Keep the sidebar menu minimized",
verbose_name="Minimize Sidebar Menu",
),
),
]