DINGOS Model Overview¶

_images/dingos_model_overview.png

DINGOS Model Overview

Overview of DINGOS models and their relationships.

Please refer to the DINGOS Developers' Overview of the DINGOS models. The source code file models.py is extensively documented. Very readable and browsable documentation is generated by Django under the admin url /admin/docs/models – be sure to include django.contrib.admindocs in your list of installed applications and the following in your url.py file:

urlpatterns = patterns('',
                       ...
                       # Admin documentation:
                       url(r'^admin/doc/', include('django.contrib.admindocs.urls')),
                       ...
                      )