-
Notifications
You must be signed in to change notification settings - Fork 365
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
models/contest: clarify rate_all behaviour
Rate all is confusingly named, since it really means "rate even users who don't submit". In my opinion, this should have been the default, but instead we can simply fix the description.
- Loading branch information
Showing
2 changed files
with
19 additions
and
1 deletion.
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,16 @@ | ||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('judge', '0147_judge_add_tiers'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='contest', | ||
name='rate_all', | ||
field=models.BooleanField(default=False, help_text='Rate users even if they make no submissions.', verbose_name='rate all'), | ||
), | ||
] |
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