add CourseDetail, CourseStudentResults
This commit is contained in:
parent
b629459b46
commit
1797b9fe06
10 changed files with 205 additions and 17 deletions
19
judge/migrations/0151_alter_courseassignment_course.py
Normal file
19
judge/migrations/0151_alter_courseassignment_course.py
Normal file
|
@ -0,0 +1,19 @@
|
|||
# Generated by Django 3.2.17 on 2023-02-15 04:28
|
||||
|
||||
from django.db import migrations, models
|
||||
import django.db.models.deletion
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('judge', '0150_alter_profile_timezone'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='courseassignment',
|
||||
name='course',
|
||||
field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='judge.course', verbose_name='course'),
|
||||
),
|
||||
]
|
19
judge/migrations/0152_alter_courserole_course.py
Normal file
19
judge/migrations/0152_alter_courserole_course.py
Normal file
|
@ -0,0 +1,19 @@
|
|||
# Generated by Django 3.2.17 on 2023-02-22 08:08
|
||||
|
||||
from django.db import migrations, models
|
||||
import django.db.models.deletion
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('judge', '0151_alter_courseassignment_course'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='courserole',
|
||||
name='course',
|
||||
field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='judge.course', verbose_name='course'),
|
||||
),
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue