-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'release/0.3.69' into main
- Loading branch information
Showing
14 changed files
with
170 additions
and
104 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
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,61 @@ | ||
from edc_sites.single_site import SingleSite | ||
from edc_sites.site import sites | ||
|
||
suffix = "clinicedc.org" | ||
language_codes = ["en"] | ||
sites.register( | ||
SingleSite( | ||
10, | ||
"mochudi", | ||
title="Mochudi", | ||
country="botswana", | ||
country_code="bw", | ||
language_codes=language_codes, | ||
domain=f"mochudi.bw.{suffix}", | ||
), | ||
SingleSite( | ||
20, | ||
"molepolole", | ||
title="Molepolole", | ||
country="botswana", | ||
country_code="bw", | ||
language_codes=language_codes, | ||
domain=f"molepolole.bw.{suffix}", | ||
), | ||
SingleSite( | ||
30, | ||
"lobatse", | ||
title="Lobatse", | ||
country="botswana", | ||
country_code="bw", | ||
language_codes=language_codes, | ||
domain=f"lobatse.bw.{suffix}", | ||
), | ||
SingleSite( | ||
40, | ||
"gaborone", | ||
title="Gaborone", | ||
country="botswana", | ||
country_code="bw", | ||
language_codes=language_codes, | ||
domain=f"gaborone.bw.{suffix}", | ||
), | ||
SingleSite( | ||
50, | ||
"karakobis", | ||
title="Karakobis", | ||
country="botswana", | ||
country_code="bw", | ||
language_codes=language_codes, | ||
domain=f"karakobis.bw.{suffix}", | ||
), | ||
SingleSite( | ||
60, | ||
"windhoek", | ||
title="Windhoek", | ||
country="namibia", | ||
country_code="na", | ||
language_codes=language_codes, | ||
domain=f"windhoek.bw.{suffix}", | ||
), | ||
) |
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
30 changes: 30 additions & 0 deletions
30
edc_data_manager/migrations/0036_alter_historicalqueryrule_rule_handler_name_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,30 @@ | ||
# Generated by Django 5.0 on 2023-12-08 00:49 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("edc_data_manager", "0035_datadictionary_edc_data_ma_model_92b469_idx"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="historicalqueryrule", | ||
name="rule_handler_name", | ||
field=models.CharField( | ||
choices="(('do_nothing', 'Do Nothing'), ('default', 'Default'))", | ||
default="default", | ||
max_length=150, | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="queryrule", | ||
name="rule_handler_name", | ||
field=models.CharField( | ||
choices="(('do_nothing', 'Do Nothing'), ('default', 'Default'))", | ||
default="default", | ||
max_length=150, | ||
), | ||
), | ||
] |
33 changes: 33 additions & 0 deletions
33
edc_data_manager/migrations/0037_alter_historicalqueryrule_rule_handler_name_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,33 @@ | ||
# Generated by Django 5.0 on 2023-12-13 14:26 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
( | ||
"edc_data_manager", | ||
"0036_alter_historicalqueryrule_rule_handler_name_and_more", | ||
), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="historicalqueryrule", | ||
name="rule_handler_name", | ||
field=models.CharField( | ||
choices="(('do_nothing', 'Do Nothing'), ('default', 'Default'))", | ||
default="default", | ||
max_length=150, | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="queryrule", | ||
name="rule_handler_name", | ||
field=models.CharField( | ||
choices="(('do_nothing', 'Do Nothing'), ('default', 'Default'))", | ||
default="default", | ||
max_length=150, | ||
), | ||
), | ||
] |
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.