I am looking for a way to represent my Django project model graphically.
Is there some kind of application that does this ERD (chart)?
Update after @Etienne instructions
Here is an example of how I am finally viewing a PDF representing some models of my django project
$ python manage.py graph_models app1 app2 ... | dot -Tpdf | evince
- It actually generates point data with my applications (app1, app2, ...)
- Transfer result to
dot for PDF output - Opens output with
evince
django diagram erd model
Pierre de LESPINAY Jul 21 '11 at 13:11 2011-07-21 13:11
source share