Initial commit
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
# Generated by Django 6.0.7 on 2026-07-31 07:21
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
initial = True
|
||||
|
||||
dependencies = [
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='BrandingSetting',
|
||||
fields=[
|
||||
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||
('app_name', models.CharField(default='Veranstaltungsschichtplaner', max_length=200)),
|
||||
('logo_url', models.CharField(blank=True, default='', max_length=500)),
|
||||
('primary_color', models.CharField(default='#2563eb', max_length=50)),
|
||||
('secondary_color', models.CharField(default='#4f46e5', max_length=50)),
|
||||
('custom_banner_text', models.TextField(blank=True, default='')),
|
||||
],
|
||||
),
|
||||
]
|
||||
@@ -0,0 +1,48 @@
|
||||
# Generated by Django 6.0.7 on 2026-07-31 07:44
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('branding', '0001_initial'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='brandingsetting',
|
||||
name='community_info_text',
|
||||
field=models.TextField(default='Initiative e.V. Hausverein\nOffene Angebote, DIY-Kultur & engagierte Schichten.'),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='brandingsetting',
|
||||
name='community_info_title',
|
||||
field=models.CharField(default='📌 Verein & Infos', max_length=200),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='brandingsetting',
|
||||
name='show_community_info_box',
|
||||
field=models.BooleanField(default=True),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='brandingsetting',
|
||||
name='show_support_box',
|
||||
field=models.BooleanField(default=True),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='brandingsetting',
|
||||
name='support_box_text',
|
||||
field=models.TextField(default='Hilf mit als Helfer*in an der Bar, beim Essen kochen oder beim Auf- & Abbau.'),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='brandingsetting',
|
||||
name='support_box_title',
|
||||
field=models.CharField(default='❤️ Unterstützen', max_length=200),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='brandingsetting',
|
||||
name='primary_color',
|
||||
field=models.CharField(default='#E05A47', max_length=50),
|
||||
),
|
||||
]
|
||||
Binary file not shown.
BIN
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user