Source code for oioioi.contestlogo.controllers

from oioioi.contests.controllers import ContestController


[docs]class LogoContestControllerMixin(object): """Sets default empty contest logo and icons settings."""
[docs] def default_contestlogo_url(self): """Returns a URL of an image which will be used as the contest logo. If a contest admin specifies a contest logo URL in the contest settings view, it will be used instead of the one returned by this function. The default implementation returns None. """ return None
[docs] def default_contesticons_urls(self): """Returns a list of URLs of images which will be used to decorate the user side menu. If a contest admin adds some icon urls in the contest settings view, they will be used instead of the urls returned by this function. The default implementation returns an empty list. """ return []
ContestController.mix_in(LogoContestControllerMixin)