diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2019-09-13 18:37:06 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2019-09-13 18:37:29 +0200 |
commit | a2d4d2cf2561c4dfe926ab03f4dbcfb3409310c7 (patch) | |
tree | 81714ce5e159dcdd06faed1b44b2fa4ccdf22e1a /archaeological_finds/forms.py | |
parent | bbde20e66cf624a7919050548cbfa8248173c49f (diff) | |
download | Ishtar-a2d4d2cf2561c4dfe926ab03f4dbcfb3409310c7.tar.bz2 Ishtar-a2d4d2cf2561c4dfe926ab03f4dbcfb3409310c7.zip |
Muliple person deletion wizard
Diffstat (limited to 'archaeological_finds/forms.py')
-rw-r--r-- | archaeological_finds/forms.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/archaeological_finds/forms.py b/archaeological_finds/forms.py index a333033c6..a08821d85 100644 --- a/archaeological_finds/forms.py +++ b/archaeological_finds/forms.py @@ -54,7 +54,7 @@ from ishtar_common import widgets from ishtar_common.forms import CustomForm, CustomFormSearch, FormSet, \ FloatField, reverse_lazy, TableSelect, get_now, FinalForm, \ ManageOldType, FieldType, IshtarForm, FormHeader, QAForm, HistorySelect, \ - PkWizardSearch + MultiSearchForm from ishtar_common.forms_common import get_town_field from ishtar_common.models import valid_id, valid_ids, get_current_profile, \ SpatialReferenceSystem, Area, OperationType, IshtarUser @@ -1452,7 +1452,7 @@ class FindDeletionForm(FinalForm): confirm_end_msg = _(u"Would you like to delete this find?") -class UpstreamFindFormSelection(PkWizardSearch, FindFormSelection): +class UpstreamFindFormSelection(MultiSearchForm, FindFormSelection): form_label = _(u"Upstream finds") current_model = models.Find pk_key = 'resulting_pk' |