Newer
Older
Dong Zhuang
committed
from django.apps import AppConfig
from django.utils.translation import ugettext_lazy as _
from relate.checks import register_startup_checks_extra, register_startup_checks
Dong Zhuang
committed
class CourseConfig(AppConfig):
name = 'course'
# for translation of the name of "Course" app displayed in admin.
verbose_name = _("Course module")
def ready(self):
# register all checks
register_startup_checks()
register_startup_checks_extra()