Hello. There are articles
. It is necessary that the admin panel displays in Russian "Content", for example. I tried this: In the application folder in apps.py:
# -*- coding: utf-8 -*- # # articles/apps.py from django.apps import AppConfig class ArticleAppConfig(AppConfig): name = "Содержание" verbose_name = "Содержание"
Then in the folder with the application in __init__.py
:
# articles/__init__.py default_app_config = "articles.apps.ArticleAppConfig"
The server at the start gives an error:
ImportError: No module named Contents
Will you be so kind)