plateforme-tfjm2/apps/tournament/apps.py

11 lines
272 B
Python
Raw Normal View History

2020-04-29 02:06:02 +00:00
from django.apps import AppConfig
2020-04-29 02:51:25 +00:00
from django.utils.translation import gettext_lazy as _
2020-04-29 02:06:02 +00:00
class TournamentConfig(AppConfig):
2020-05-11 12:08:19 +00:00
"""
The tournament app handles all that is related to the tournaments.
"""
2020-04-29 02:51:25 +00:00
name = 'tournament'
verbose_name = _('tournament')