-
Notifications
You must be signed in to change notification settings - Fork 0
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 #41 from hotosm/qa/sept4
Qa/sept4
- Loading branch information
Showing
279 changed files
with
7,616 additions
and
1,493 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
35 changes: 35 additions & 0 deletions
35
app/events/migrations/0010_remove_eventownerpage_view_all_events_url_and_more.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,35 @@ | ||
# Generated by Django 4.2.7 on 2024-09-18 19:59 | ||
|
||
from django.db import migrations, models | ||
import wagtail.blocks | ||
import wagtail.documents.blocks | ||
import wagtail.fields | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('events', '0009_alter_eventownerpage_category_select_and_more'), | ||
] | ||
|
||
operations = [ | ||
migrations.RemoveField( | ||
model_name='eventownerpage', | ||
name='view_all_events_url', | ||
), | ||
migrations.AddField( | ||
model_name='eventownerpage', | ||
name='view_all_events_link', | ||
field=wagtail.fields.StreamField([('page', wagtail.blocks.PageChooserBlock()), ('url', wagtail.blocks.URLBlock()), ('document', wagtail.documents.blocks.DocumentChooserBlock())], blank=True, use_json_field=True), | ||
), | ||
migrations.AlterField( | ||
model_name='individualeventpage', | ||
name='end_date_time', | ||
field=models.DateTimeField(help_text='This datetime is in UTC.'), | ||
), | ||
migrations.AlterField( | ||
model_name='individualeventpage', | ||
name='start_date_time', | ||
field=models.DateTimeField(help_text='This datetime is in UTC.'), | ||
), | ||
] |
18 changes: 18 additions & 0 deletions
18
app/events/migrations/0011_eventownerpage_remove_filters_text.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,18 @@ | ||
# Generated by Django 4.2.7 on 2024-10-03 22:49 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('events', '0010_remove_eventownerpage_view_all_events_url_and_more'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='eventownerpage', | ||
name='remove_filters_text', | ||
field=models.CharField(default='Remove All Filters'), | ||
), | ||
] |
21 changes: 21 additions & 0 deletions
21
app/events/migrations/0012_alter_eventownerpage_view_all_events_link.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,21 @@ | ||
# Generated by Django 4.2.7 on 2024-10-10 17:41 | ||
|
||
from django.db import migrations | ||
import wagtail.blocks | ||
import wagtail.documents.blocks | ||
import wagtail.fields | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('events', '0011_eventownerpage_remove_filters_text'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='eventownerpage', | ||
name='view_all_events_link', | ||
field=wagtail.fields.StreamField([('page', wagtail.blocks.PageChooserBlock()), ('url', wagtail.blocks.URLBlock()), ('document', wagtail.documents.blocks.DocumentChooserBlock()), ('other', wagtail.blocks.CharBlock(help_text="Only use this option as a last resort. The other fields are preferred. In cases like email 'mailto' links, however, this field can be used. Ensure that your provided link will function as intended prior to publishing live."))], blank=True, use_json_field=True), | ||
), | ||
] |
19 changes: 19 additions & 0 deletions
19
app/events/migrations/0013_alter_individualeventpage_extended_description.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,19 @@ | ||
# Generated by Django 4.2.7 on 2024-10-21 21:37 | ||
|
||
from django.db import migrations | ||
import wagtail.fields | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('events', '0012_alter_eventownerpage_view_all_events_link'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='individualeventpage', | ||
name='extended_description', | ||
field=wagtail.fields.StreamField([('text_block', 0)], block_lookup={0: ('wagtail.blocks.RichTextBlock', (), {'features': ['h2', 'h3', 'h4', 'bold', 'italic', 'link', 'ol', 'ul', 'hr', 'document-link', 'image', 'embed', 'code', 'blockquote']})}, null=True), | ||
), | ||
] |
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,18 @@ | ||
# Generated by Django 4.2.7 on 2024-10-24 18:38 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('events', '0013_alter_individualeventpage_extended_description'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='eventownerpage', | ||
name='applied_text', | ||
field=models.CharField(default='applied', help_text='This will be a suffix to a number, used to indicate how many filters are applied currently in some field.'), | ||
), | ||
] |
28 changes: 28 additions & 0 deletions
28
app/events/migrations/0015_eventownerpage_date_date_text_and_more.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,28 @@ | ||
# Generated by Django 4.2.7 on 2024-11-06 23:54 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('events', '0014_eventownerpage_applied_text'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='eventownerpage', | ||
name='date_date_text', | ||
field=models.CharField(default='date'), | ||
), | ||
migrations.AddField( | ||
model_name='eventownerpage', | ||
name='date_from_text', | ||
field=models.CharField(default='From'), | ||
), | ||
migrations.AddField( | ||
model_name='eventownerpage', | ||
name='date_to_text', | ||
field=models.CharField(default='To'), | ||
), | ||
] |
18 changes: 18 additions & 0 deletions
18
app/events/migrations/0016_alter_eventownerpage_date_date_text.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,18 @@ | ||
# Generated by Django 4.2.7 on 2024-11-07 17:06 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('events', '0015_eventownerpage_date_date_text_and_more'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='eventownerpage', | ||
name='date_date_text', | ||
field=models.CharField(default='Filter by Date'), | ||
), | ||
] |
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
Oops, something went wrong.