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