-
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.
Merge pull request #326 from maykinmedia/issue/879-editable-titles
[#879] Added configuration fields for questionnaire block's (sub-)titles
- Loading branch information
Showing
7 changed files
with
96 additions
and
7 deletions.
There are no files selected for viewing
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
53 changes: 53 additions & 0 deletions
53
src/open_inwoner/configurations/migrations/0021_siteconfiguration_more_titles.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,53 @@ | ||
# Generated by Django 3.2.15 on 2022-11-10 13:58 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("configurations", "0020_siteconfiguration_login_show"), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name="siteconfiguration", | ||
name="home_questionnaire_subtitle", | ||
field=models.CharField( | ||
default="Test met een paar simpele vragen of u recht heeft op een product", | ||
help_text="Questionnaire sub-title on the home page.", | ||
max_length=255, | ||
verbose_name="Home page questionaire sub-title", | ||
), | ||
), | ||
migrations.AddField( | ||
model_name="siteconfiguration", | ||
name="home_questionnaire_title", | ||
field=models.CharField( | ||
default="Waar bent u naar op zoek?", | ||
help_text="Questionnaire title on the home page.", | ||
max_length=255, | ||
verbose_name="Home page questionaire title", | ||
), | ||
), | ||
migrations.AddField( | ||
model_name="siteconfiguration", | ||
name="select_questionnaire_subtitle", | ||
field=models.CharField( | ||
default="Kies hieronder één van de volgende vragenlijsten om de zelfdiagnose te starten.", | ||
help_text="Questionaire selector sub-title on the theme and profile pages.", | ||
max_length=255, | ||
verbose_name="Questionaire selector widget sub-title", | ||
), | ||
), | ||
migrations.AddField( | ||
model_name="siteconfiguration", | ||
name="select_questionnaire_title", | ||
field=models.CharField( | ||
default="Keuze zelfdiagnose?", | ||
help_text="Questionaire selector title on the theme and profile pages.", | ||
max_length=255, | ||
verbose_name="Questionaire selector widget title", | ||
), | ||
), | ||
] |
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
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
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
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
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