1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2025-02-06 17:33:01 +00:00

11 lines
272 B
Python
Raw Normal View History

2020-04-29 04:06:02 +02:00
from django.apps import AppConfig
2020-04-29 04:51:25 +02:00
from django.utils.translation import gettext_lazy as _
2020-04-29 04:06:02 +02:00
class MemberConfig(AppConfig):
2020-05-11 14:08:19 +02:00
"""
The member app handles the information that concern a user, its documents, ...
"""
2020-04-29 04:51:25 +02:00
name = 'member'
verbose_name = _('member')