8 lines
237 B
Python
8 lines
237 B
Python
from django.apps import AppConfig
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
|
|
class KFetAuthConfig(AppConfig):
|
|
name = 'kfet.auth'
|
|
label = 'kfetauth'
|
|
verbose_name = _("K-Fêt - Authentification et Autorisation")
|