Add public scoreboard option
This commit is contained in:
parent
f3bcc25eb0
commit
8bb3812f97
11 changed files with 312 additions and 35 deletions
|
@ -167,6 +167,11 @@ class Contest(models.Model, PageVotable, Bookmarkable):
|
|||
related_name="view_contest_scoreboard",
|
||||
help_text=_("These users will be able to view the scoreboard."),
|
||||
)
|
||||
public_scoreboard = models.BooleanField(
|
||||
verbose_name=_("public scoreboard"),
|
||||
help_text=_("Ranking page is public even for private contests."),
|
||||
default=False,
|
||||
)
|
||||
use_clarifications = models.BooleanField(
|
||||
verbose_name=_("no comments"),
|
||||
help_text=_("Use clarification system instead of comments."),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue