mirror of
https://github.com/Hopiu/django.git
synced 2026-05-24 14:53:52 +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 FlatPagesConfig(AppConfig):
|
|
name = 'django.contrib.flatpages'
|
|
verbose_name = _("Flat Pages")
|