An application that facilitates identification and operation on models.
It searches for all available models in the project and allows you to select and view details about them by holding the mouse on the parameter of interest.
After selecting the path between models through relations, after clicking CREATE we will get a path that allows you to get to the last model.
It is also possible to select a model and click on its name and it will take you to Visual Studio Code to the file and line of the given model.
pip install django-model-viewerOpen your project settings and add:
INSTALLED_APPS = [
***
'django_model_viewer',
***
]
MIDDLEWARE = [
***
'django_model_viewer.middleware.AppendApplication',
***
]Add path to main urls file
urlpatterns = [
path('models-view/', include('django_model_viewer.urls')),
***
]- self