Skip to content
apps.py 251 B
Newer Older
from django.apps import AppConfig
from django.utils.translation import ugettext_lazy as _


class AccountsConfig(AppConfig):
    name = 'accounts'
    # for translation of the name of "Accounts" app displayed in admin.
    verbose_name = _("Accounts")