mirror of
https://github.com/jazzband/django-dbtemplates.git
synced 2026-03-16 22:20:28 +00:00
* support for Python 3.12 and up * removed unused deprecated ugettext imports * fix django main being Python 3.12+ * missed some copypaste
7 lines
195 B
Python
7 lines
195 B
Python
from django.apps import AppConfig
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
|
|
class DBTemplatesConfig(AppConfig):
|
|
name = 'dbtemplates'
|
|
verbose_name = _('Database templates')
|