mirror of
https://github.com/jazzband/django-constance.git
synced 2026-03-27 19:50:24 +00:00
7 lines
183 B
Python
7 lines
183 B
Python
from django.apps import AppConfig
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
|
|
class ConstanceConfig(AppConfig):
|
|
name = 'constance'
|
|
verbose_name = _('Constance')
|