mirror of
https://github.com/jazzband/django-dbtemplates.git
synced 2026-04-11 02:31:02 +00:00
7 lines
196 B
Python
7 lines
196 B
Python
from django.apps import AppConfig
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
|
|
class DBTemplatesConfig(AppConfig):
|
|
name = 'dbtemplates'
|
|
verbose_name = _('Database templates')
|