-
Notifications
You must be signed in to change notification settings - Fork 21
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 #176 from springload/chore/wagtail-update-30
Upgrade wagtail to 3.0
- Loading branch information
Showing
18 changed files
with
108 additions
and
44 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Lists available recipes | ||
default: | ||
@just --list | ||
|
||
# Run manage.py migrate | ||
migrate: | ||
docker-compose exec -T application sh -c 'python manage.py migrate' | ||
|
||
# Shell (backend) | ||
shell: | ||
docker-compose exec application sh |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
# Generated by Django 3.2.13 on 2023-10-30 02:43 | ||
|
||
from django.db import migrations, models | ||
|
||
import wagtail.contrib.forms.models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("core", "0015_alter_wagtailcompanypage_coords"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="submitformfield", | ||
name="choices", | ||
field=models.TextField( | ||
blank=True, | ||
help_text="Comma or new line separated list of choices. Only applicable in checkboxes, radio and dropdown.", | ||
verbose_name="choices", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="submitformfield", | ||
name="default_value", | ||
field=models.TextField( | ||
blank=True, | ||
help_text="Default value. Comma or new line separated values supported for checkboxes.", | ||
verbose_name="default value", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="submitformpage", | ||
name="from_address", | ||
field=models.EmailField( | ||
blank=True, max_length=255, verbose_name="from address" | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="submitformpage", | ||
name="to_address", | ||
field=models.CharField( | ||
blank=True, | ||
help_text="Optional - form submissions will be emailed to these addresses. Separate multiple addresses by comma.", | ||
max_length=255, | ||
validators=[wagtail.contrib.forms.models.validate_to_address], | ||
verbose_name="to address", | ||
), | ||
), | ||
] |
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
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
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
-c constraints.txt | ||
Django>=3.2,<3.3 | ||
wagtail>=2.16,<2.17 | ||
wagtail~=3.0.3 | ||
boto3>=1.24.15,<1.25 | ||
psycopg2>=2.7 | ||
|
||
|
Oops, something went wrong.