mirror of
https://github.com/django/django.git
synced 2025-09-01 00:08:13 +00:00
7 lines
199 B
Python
7 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")
|