mirror of
https://github.com/django/django.git
synced 2025-10-31 09:41:08 +00:00
8 lines
199 B
Python
8 lines
199 B
Python
from django.apps import AppConfig
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
|
|
class WebDesignConfig(AppConfig):
|
|
name = 'django.contrib.webdesign'
|
|
verbose_name = _("Web Design")
|