mirror of
https://gitlab.com/animath/si/plateforme.git
synced 2024-11-26 18:07:10 +00:00
8 lines
185 B
Python
8 lines
185 B
Python
from django.apps import AppConfig
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
|
|
class TournamentConfig(AppConfig):
|
|
name = 'tournament'
|
|
verbose_name = _('tournament')
|