After working on a Django project for a while, I now have to do some design documents for it (UML type stuff). However the code doesn't have classes, but instead uses views.py
with modules in it...
What would be the best way to show the design of my application from the initial __init__.py
, to the urls.py
where the HTML requests are then filtered to the specific urls.py
in each of the packages and then handled by the views.py
?
i.e.
django-app
urls.py
views.py
settings.py
manager.py
__init__.py
django-package
urls.py
views.py