-
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.
[#1829] Make call-to-action url + text configurable per statustype
- Loading branch information
Showing
9 changed files
with
181 additions
and
4 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
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
43 changes: 43 additions & 0 deletions
43
src/open_inwoner/openzaak/migrations/0028_zaaktype_statustype_button.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,43 @@ | ||
# Generated by Django 3.2.20 on 2023-10-31 11:37 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("openzaak", "0027_zaaktype_resultaattype_config"), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name="zaaktypestatustypeconfig", | ||
name="call_to_action_text", | ||
field=models.CharField( | ||
blank=True, | ||
default="", | ||
help_text="The text displayed on the call-to-action button", | ||
max_length=48, | ||
verbose_name="Call to action text", | ||
), | ||
), | ||
migrations.AddField( | ||
model_name="zaaktypestatustypeconfig", | ||
name="call_to_action_url", | ||
field=models.URLField( | ||
blank=True, | ||
default="", | ||
help_text="The url the user will be sent to by clicking on the call-to-action button", | ||
verbose_name="Call to action url", | ||
), | ||
), | ||
migrations.AddField( | ||
model_name="zaaktypestatustypeconfig", | ||
name="show_document_uploads", | ||
field=models.BooleanField( | ||
default=True, | ||
help_text="Wheter document uploads are to be shown", | ||
verbose_name="Show document uploads", | ||
), | ||
), | ||
] |
13 changes: 13 additions & 0 deletions
13
src/open_inwoner/openzaak/migrations/0029_merge_20231107_1355.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,13 @@ | ||
# Generated by Django 3.2.20 on 2023-11-07 12:55 | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("openzaak", "0028_merge_20231101_1705"), | ||
("openzaak", "0028_zaaktype_statustype_button"), | ||
] | ||
|
||
operations = [] |
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