Initial commit

This commit is contained in:
2024-08-27 20:33:44 +02:00
commit 1f1832267d
14794 changed files with 1599592 additions and 0 deletions

View File

@@ -0,0 +1,42 @@
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("wagtailusers", "0003_add_verbose_names"),
]
operations = [
migrations.AlterModelOptions(
name="userprofile",
options={"verbose_name": "user profile"},
),
migrations.AlterField(
model_name="userprofile",
name="approved_notifications",
field=models.BooleanField(
default=True,
help_text="Receive notification when your page edit is approved",
verbose_name="approved notifications",
),
),
migrations.AlterField(
model_name="userprofile",
name="rejected_notifications",
field=models.BooleanField(
default=True,
help_text="Receive notification when your page edit is rejected",
verbose_name="rejected notifications",
),
),
migrations.AlterField(
model_name="userprofile",
name="submitted_notifications",
field=models.BooleanField(
default=True,
help_text="Receive notification when a page is submitted for moderation",
verbose_name="submitted notifications",
),
),
]