diff options
Diffstat (limited to 'archaeological_finds/forms.py')
-rw-r--r-- | archaeological_finds/forms.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/archaeological_finds/forms.py b/archaeological_finds/forms.py index 04e85a2b0..2796bb844 100644 --- a/archaeological_finds/forms.py +++ b/archaeological_finds/forms.py @@ -210,7 +210,7 @@ class BasicFindForm(CustomForm, ManageOldType): file_upload = True form_label = _("Find") form_admin_name = _("Simple find - 020 - General") - form_slug = "simplefind-020-general" + form_slug = "find-020-simplegeneral" base_models = [ "object_type", "material_type", @@ -737,7 +737,7 @@ class ResultingFindForm(CustomForm, ManageOldType): file_upload = True form_label = _("Resulting find") form_admin_name = _("Treatment n-1 - 030 - Resulting find") - form_slug = "treatmentn1-030-resulting-find" + form_slug = "treatment-030-n1-resulting-find" associated_models = { "resulting_material_type": models.MaterialType, @@ -845,7 +845,7 @@ class ResultingFindForm(CustomForm, ManageOldType): class ResultingFindsForm(CustomForm, ManageOldType): form_label = _("Resulting finds") form_admin_name = _("Treatment 1-n - 030 - Resulting finds") - form_slug = "treatment1n-030-resulting-finds" + form_slug = "treatment-030-1n-resulting-finds" associated_models = {} resultings_number = forms.IntegerField( |