Added foldable apps support. #117

This commit is contained in:
Fabio Caccamo
2021-11-23 22:32:01 +01:00
parent 3a2b59f7cc
commit 593709808f
7 changed files with 141 additions and 1 deletions
@@ -0,0 +1,18 @@
# Generated by Django 3.2 on 2021-11-23 16:02
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('admin_interface', '0022_add_logo_max_width_and_height'),
]
operations = [
migrations.AddField(
model_name='theme',
name='foldable_apps',
field=models.BooleanField(default=True, verbose_name='foldable apps'),
),
]