mirror of
https://github.com/jazzband/django-dbtemplates.git
synced 2026-03-16 22:20:28 +00:00
10 lines
284 B
Python
10 lines
284 B
Python
from django.apps import AppConfig
|
|
try:
|
|
from django.utils.translation import ugettext_lazy as _
|
|
except ImportError:
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
|
|
class DBTemplatesConfig(AppConfig):
|
|
name = 'dbtemplates'
|
|
verbose_name = _('Database templates')
|