Skip to content
This repository has been archived by the owner on May 4, 2018. It is now read-only.

Latest commit

 

History

History
32 lines (18 loc) · 996 Bytes

dingos_model_overview.rst

File metadata and controls

32 lines (18 loc) · 996 Bytes

DINGOS Model Overview

DINGOS Model Overview

DINGOS Model Overview

Overview of DINGOS models and their relationships.

Please refer to the DINGOS Developers' Overview <reference/dingos_data_model.pdf> 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')),
       ...
                      )