diff options
author | Cefin <kevon@tuta.io> | 2021-12-10 14:45:14 +0000 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2022-12-12 12:20:59 +0100 |
commit | e007061973730793344f0e891b37526134467c5b (patch) | |
tree | f182d8dd51602160097ed038fa825c5c62482c1b /archaeological_finds/forms.py | |
parent | 55994e46b462bdec0540f785468b8cf4ee242364 (diff) | |
download | Ishtar-e007061973730793344f0e891b37526134467c5b.tar.bz2 Ishtar-e007061973730793344f0e891b37526134467c5b.zip |
draft and temporary testing for #5231
Diffstat (limited to 'archaeological_finds/forms.py')
-rw-r--r-- | archaeological_finds/forms.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/archaeological_finds/forms.py b/archaeological_finds/forms.py index fc1816d32..9f8aeb497 100644 --- a/archaeological_finds/forms.py +++ b/archaeological_finds/forms.py @@ -1161,6 +1161,12 @@ class QAFindBasketModify(QAForm): return self._get_ishtar_user_list(value) +class QAFindTreatmentN1Form(FormSet): + form_label = _("Treatment Many to One") + + def __init__(self, *args, **kwargs): + return HttpResponseRedirect(reverse("treatment_creation_n1", args=self.pk)) + class PreservationForm(CustomForm, ManageOldType): form_label = _("Preservation") form_admin_name = _("Find - 030 - Preservation") |