-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
registration: change helptext wording
- Loading branch information
Showing
2 changed files
with
39 additions
and
6 deletions.
There are no files selected for viewing
31 changes: 31 additions & 0 deletions
31
meinberlin/apps/users/migrations/0008_change_registration_helptext.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# Generated by Django 4.2.11 on 2025-01-15 18:04 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("meinberlin_users", "0007_add_error_message_username_used_as_email"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="user", | ||
name="get_newsletters", | ||
field=models.BooleanField( | ||
default=False, | ||
help_text="Yes, I would like to receive e-mail newsletters about the projects I am following. I can undo this at any time in my user account settings.", | ||
verbose_name="Newsletter", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="user", | ||
name="get_notifications", | ||
field=models.BooleanField( | ||
default=True, | ||
help_text="Yes, I would like to be notified by e-mail about the start and end of participation opportunities. This applies to all projects I follow. I also receive an e-mail when someone comments on one of my contributions. I can adapt notification in my user account settings. ", | ||
verbose_name="Notifications", | ||
), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters