Changes between Version 27 and Version 28 of DjangoGraphviz


Ignore:
Timestamp:
Apr 6, 2008, 9:34:27 AM (17 years ago)
Author:
trbs
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DjangoGraphviz

    v27 v28  
    3434You 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.
    3535
     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 more easy and clear to view.
     37
     38Usage:
     39{{{
     40 # download django-command-extensions and include it in your app.
     41 $ ./manage.py graph_models -a -g -o my_project.png
     42}}}
     43
     44
    3645== Feedback ==
    3746
Back to Top