Update AppConfigs

This commit is contained in:
Aurélien Delobelle 2017-08-19 15:36:45 +02:00
parent 677c7f3367
commit e1b4dc1651
12 changed files with 29 additions and 5 deletions

View file

@ -0,0 +1 @@
default_app_config = 'users.apps.UsersConfig'

View file

@ -1,5 +1,7 @@
from django.apps import AppConfig
from django.utils.translation import ugettext_lazy as _
class UsersConfig(AppConfig):
name = 'users'
verbose_name = _("Utilisateurs")