9 lines
200 B
Python
9 lines
200 B
Python
|
from django.apps import AppConfig
|
||
|
|
||
|
from django.utils.translation import ugettext_lazy as _
|
||
|
|
||
|
|
||
|
class FormToolsConfig(AppConfig):
|
||
|
name = 'django.contrib.formtools'
|
||
|
verbose_name = _("form tools")
|