9 lines
199 B
Python
9 lines
199 B
Python
|
from django.apps import AppConfig
|
||
|
|
||
|
from django.utils.translation import ugettext_lazy as _
|
||
|
|
||
|
|
||
|
class RedirectsConfig(AppConfig):
|
||
|
name = 'django.contrib.redirects'
|
||
|
verbose_name = _("redirects")
|