feat: added smaller logos to web settings
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
# Generated by Django 5.1.4 on 2025-02-19 18:39
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
("web", "0003_websettings_theme_colors"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name="websettings",
|
||||
name="logo_32",
|
||||
field=models.ImageField(
|
||||
blank=True, null=True, upload_to="assets", verbose_name="logo 32x32"
|
||||
),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name="websettings",
|
||||
name="logo_64",
|
||||
field=models.ImageField(
|
||||
blank=True, null=True, upload_to="assets", verbose_name="logo 64x64"
|
||||
),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user