Good night guys, I'm trying to rename the application in django admin according to the documentation, but it did not work, I think I'm doing something wrong, the code is as follows:
players control / apps.py
from django.apps import AppConfig
class ControledebolsistasConfig(AppConfig):
name = 'controledebolsistas'
verbose_name = "Controle de Bolsistas"
_init __. py
default_app_config = 'controledebolsistas.apps.ControledebolsistasConfig'
It has an error 'ImportError: No module named' player control ', I think I'm doing something wrong, I need some import in these files ?? I'm new to django and anyone who can help me thanks! '