Import Modes¶
Currently, three import modes are available:
- Minimal: Do not create
HeaderorDataElementinstances at all.- Normal: Create
Headers and save only standard data elements to the database.- Full: Create
Headers and save all data elements to the database.
By default, django_dicom’s import mode will be set to Normal.
Changing Import Mode¶
In order to change the import mode, in your project settings add:
DICOM_IMPORT_MODE = "minimal" # or "full"