summaryrefslogtreecommitdiff
path: root/archaeological_finds/forms.py
diff options
context:
space:
mode:
Diffstat (limited to 'archaeological_finds/forms.py')
-rw-r--r--archaeological_finds/forms.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/archaeological_finds/forms.py b/archaeological_finds/forms.py
index c1b5a229d..15ce0465b 100644
--- a/archaeological_finds/forms.py
+++ b/archaeological_finds/forms.py
@@ -1108,6 +1108,17 @@ class QAFindbasketDuplicateForm(IshtarForm):
self.basket.duplicate(label=self.cleaned_data["label"], ishtaruser=self.user)
+class QAFindBasketModify(QAForm):
+ form_admin_name = _("Find - Quick action - Modify")
+ form_slug = "findbasket-quickaction-modify"
+ MULTI = False
+
+ qa_label = forms.CharField(label="Denomination", max_length=None, required=False)
+
+ REPLACE_FIELDS = [
+ "qa_label",
+ ]
+
class PreservationForm(CustomForm, ManageOldType):
form_label = _("Preservation")
form_admin_name = _("Find - 030 - Preservation")