-
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.
feat: add hybrid format option for courseware page
- Loading branch information
1 parent
1ceb478
commit e71f785
Showing
5 changed files
with
81 additions
and
9 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
68 changes: 68 additions & 0 deletions
68
cms/migrations/0072_add_hybrid_courseware_format_option.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,68 @@ | ||
# Generated by Django 4.2.15 on 2024-08-21 08:09 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("cms", "0071_alter_certificatepage_signatories"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="coursepage", | ||
name="format", | ||
field=models.CharField( | ||
choices=[ | ||
("Online", "Online"), | ||
("Hybrid", "Hybrid"), | ||
("Other", "Other"), | ||
], | ||
default="Online", | ||
help_text="A short description indicating the format of a program or course", | ||
max_length=20, | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="externalcoursepage", | ||
name="format", | ||
field=models.CharField( | ||
choices=[ | ||
("Online", "Online"), | ||
("Hybrid", "Hybrid"), | ||
("Other", "Other"), | ||
], | ||
default="Online", | ||
help_text="A short description indicating the format of a program or course", | ||
max_length=20, | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="externalprogrampage", | ||
name="format", | ||
field=models.CharField( | ||
choices=[ | ||
("Online", "Online"), | ||
("Hybrid", "Hybrid"), | ||
("Other", "Other"), | ||
], | ||
default="Online", | ||
help_text="A short description indicating the format of a program or course", | ||
max_length=20, | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="programpage", | ||
name="format", | ||
field=models.CharField( | ||
choices=[ | ||
("Online", "Online"), | ||
("Hybrid", "Hybrid"), | ||
("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