mirror of
https://github.com/Alexander-D-Karpov/akarpov
synced 2025-04-17 15:12:05 +03:00
8 lines
185 B
Python
8 lines
185 B
Python
from django.apps import AppConfig
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
|
|
class AboutConfig(AppConfig):
|
|
name = "akarpov.about"
|
|
verbose_name = _("About me app")
|