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-24 10:16:24 +0100 |
| commit | ca10cc175991b9e5d016d82541e627bcd6b9067c (patch) | |
| tree | 4ac188aeb6add222d86d4298b47ba5020c2e65f5 /archaeological_context_records/forms.py | |
| parent | d392381bf8596ed027528e71f093b9bcf1e80d67 (diff) | |
| download | Ishtar-ca10cc175991b9e5d016d82541e627bcd6b9067c.tar.bz2 Ishtar-ca10cc175991b9e5d016d82541e627bcd6b9067c.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 75b6d71ef..7fa075f0e 100644 --- a/archaeological_context_records/forms.py +++ b/archaeological_context_records/forms.py @@ -677,7 +677,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): |
