Add set scoreboard view

This commit is contained in:
cuom1999 2020-12-27 19:59:57 -06:00
parent 8e1e3b246a
commit b3d80b5100
6 changed files with 34 additions and 1 deletions

View file

@ -0,0 +1,18 @@
# Generated by Django 2.2.17 on 2020-12-28 01:51
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('judge', '0111_contest_decimal_points'),
]
operations = [
migrations.AddField(
model_name='contest',
name='view_contest_scoreboard',
field=models.ManyToManyField(blank=True, help_text='These users will be able to view the scoreboard.', related_name='view_contest_scoreboard', to='judge.Profile', verbose_name='view contest scoreboard'),
),
]