Changes between Version 31 and Version 32 of DjangoGraphviz
- Timestamp:
- Aug 20, 2008, 11:54:24 PM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DjangoGraphviz
v31 v32 34 34 You might also be interested in [http://www.exit66.com/diagram.zip this Django app by Andrew Barilla ] from which I borrowed some ideas, that displays the graphviz results directly from the web. 35 35 36 [http://code.google.com/p/django-command-extensions/ Django- command-extensions]already provides a command to visualize your models. Using an improved version of the modelviz script. It also includes/supports grouping of your Django applications. Which will group all models of a single app together. This makes larger projects much easier and clearer to view.36 [http://code.google.com/p/django-command-extensions/ Django-extensions] (formerly named Django-command-extensions) already provides a command to visualize your models. Using an improved version of the modelviz script. It also includes/supports grouping of your Django applications. Which will group all models of a single app together. This makes larger projects much easier and clearer to view. 37 37 38 38 Usage: 39 39 {{{ 40 # download django- command-extensions and include it in your app.40 # download django-extensions and include it in your app. 41 41 $ ./manage.py graph_models -a -g -o my_project.png 42 42 }}}