-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: configure course or program format (#2747)
- Loading branch information
1 parent
8d14fd9
commit 61b350a
Showing
8 changed files
with
165 additions
and
13 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
# Generated by Django 3.2.21 on 2023-09-13 12:11 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("cms", "0063_webinarindexpage_banner_image"), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name="coursepage", | ||
name="format", | ||
field=models.CharField( | ||
choices=[("Online", "Online"), ("Other", "Other")], | ||
default="Online", | ||
help_text="A short description indicating the format of a program or course", | ||
max_length=20, | ||
), | ||
), | ||
migrations.AddField( | ||
model_name="externalcoursepage", | ||
name="format", | ||
field=models.CharField( | ||
choices=[("Online", "Online"), ("Other", "Other")], | ||
default="Online", | ||
help_text="A short description indicating the format of a program or course", | ||
max_length=20, | ||
), | ||
), | ||
migrations.AddField( | ||
model_name="externalprogrampage", | ||
name="format", | ||
field=models.CharField( | ||
choices=[("Online", "Online"), ("Other", "Other")], | ||
default="Online", | ||
help_text="A short description indicating the format of a program or course", | ||
max_length=20, | ||
), | ||
), | ||
migrations.AddField( | ||
model_name="programpage", | ||
name="format", | ||
field=models.CharField( | ||
choices=[("Online", "Online"), ("Other", "Other")], | ||
default="Online", | ||
help_text="A short description indicating the format of a program or course", | ||
max_length=20, | ||
), | ||
), | ||
] |
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.