-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added new test description and feedback fields.
- Loading branch information
James Perretta
committed
Aug 6, 2024
1 parent
224aae3
commit 46b78e6
Showing
9 changed files
with
194 additions
and
20 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
# Generated by Django 3.2.2 on 2024-08-05 21:52 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('core', '0105_tz_validation_update'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='agtestcase', | ||
name='staff_description', | ||
field=models.TextField(blank=True, help_text='Text description shown only to staff. Rendered as markdown.'), | ||
), | ||
migrations.AddField( | ||
model_name='agtestcase', | ||
name='student_description', | ||
field=models.TextField(blank=True, help_text='Text description shown to students. Rendered as markdown.'), | ||
), | ||
migrations.AddField( | ||
model_name='agtestcommand', | ||
name='staff_description', | ||
field=models.TextField(blank=True, help_text='Text description shown only to staff. Rendered as markdown.'), | ||
), | ||
migrations.AddField( | ||
model_name='agtestcommand', | ||
name='student_description', | ||
field=models.TextField(blank=True, help_text='Text description shown to students. Rendered as markdown.'), | ||
), | ||
migrations.AddField( | ||
model_name='agtestcommand', | ||
name='student_on_fail_description', | ||
field=models.TextField(blank=True, help_text='Additional text shown to students failing this test. Rendered as markdown.'), | ||
), | ||
migrations.AddField( | ||
model_name='agtestsuite', | ||
name='staff_description', | ||
field=models.TextField(blank=True, help_text='Text description shown only to staff. Rendered as markdown.'), | ||
), | ||
migrations.AddField( | ||
model_name='agtestsuite', | ||
name='student_description', | ||
field=models.TextField(blank=True, help_text='Text description shown to students. Rendered as markdown.'), | ||
), | ||
] |
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
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.