django-extensions
Installation
SKILL.md
Django Extensions
This project has django-extensions installed. Use these commands to understand and interact with the Django project.
Introspection
Show URL Routes
python manage.py show_urls
List Model Information
# All models
python manage.py list_model_info
# Specific model with signatures and field classes
python manage.py list_model_info --model <app.Model> --signature --field-class