Add forms and views for subspecialty, presentation, and pathological process management

This commit is contained in:
Ross
2025-11-17 23:01:02 +00:00
parent 4abb57900d
commit 81dc5bf48f
7 changed files with 116 additions and 0 deletions
+20
View File
@@ -40,6 +40,8 @@ from atlas.models import (
Condition,
Structure,
Subspecialty,
Presentation,
PathologicalProcess,
UncategorisedDicom,
UserReportAnswer,
CaseDisplaySet,
@@ -333,6 +335,24 @@ class StructureForm(ModelForm):
}
class SubspecialtyForm(ModelForm):
class Meta:
model = Subspecialty
exclude = []
class PresentationForm(ModelForm):
class Meta:
model = Presentation
exclude = []
class PathologicalProcessForm(ModelForm):
class Meta:
model = PathologicalProcess
exclude = []
class SeriesFindingForm(ModelForm):
class Meta:
model = SeriesFinding