mirror of
https://github.com/Hopiu/django.git
synced 2026-05-19 21:01:51 +00:00
7 lines
196 B
Python
7 lines
196 B
Python
from django.apps import AppConfig
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
|
|
class SiteMapsConfig(AppConfig):
|
|
name = 'django.contrib.sitemaps'
|
|
verbose_name = _("Site Maps")
|