diff options
| author | Étienne Loks <etienne.loks@iggdrasil.net> | 2025-11-19 16:50:50 +0100 |
|---|---|---|
| committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2025-11-20 15:17:13 +0100 |
| commit | 3324ae5f4d296122024ed8e806b94146e863798c (patch) | |
| tree | 58943f730068622cfe59338012118994b3e579ee /archaeological_context_records/forms.py | |
| parent | 992da9be2c8c2af222d3cce54ebfcaa7d9b01a49 (diff) | |
| download | Ishtar-3324ae5f4d296122024ed8e806b94146e863798c.tar.bz2 Ishtar-3324ae5f4d296122024ed8e806b94146e863798c.zip | |
✨ operation - quick context record form: open the newly created context record
Diffstat (limited to 'archaeological_context_records/forms.py')
| -rw-r--r-- | archaeological_context_records/forms.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archaeological_context_records/forms.py b/archaeological_context_records/forms.py index 11d4cbbb1..18d0079e0 100644 --- a/archaeological_context_records/forms.py +++ b/archaeological_context_records/forms.py @@ -693,7 +693,7 @@ class QAOperationCR(IshtarForm): data["parcel_id"] = self.cleaned_data["parcel"] else: data["town_id"] = self.cleaned_data["town"] - models.ContextRecord.objects.create(**data) + return models.ContextRecord.objects.create(**data) class QAContextRecordDuplicateForm(IshtarForm): |
