diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-01-10 16:46:56 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-01-10 16:46:56 +0100 |
commit | 7c4ecc3483bd1b6c608758bd4ca76c9648bb93a8 (patch) | |
tree | d7486f58c14d263c783f7f1b40ffed07638d84dc | |
parent | 800b071e258416c3e16540a91027f0b54fe50a81 (diff) | |
download | Ishtar-7c4ecc3483bd1b6c608758bd4ca76c9648bb93a8.tar.bz2 Ishtar-7c4ecc3483bd1b6c608758bd4ca76c9648bb93a8.zip |
Treatment file select form: fix treatment file check
-rw-r--r-- | archaeological_finds/forms_treatments.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archaeological_finds/forms_treatments.py b/archaeological_finds/forms_treatments.py index 7a388a10d..40d241d88 100644 --- a/archaeological_finds/forms_treatments.py +++ b/archaeological_finds/forms_treatments.py @@ -374,7 +374,7 @@ class TreatmentFileFormSelection(forms.Form): widget=widgets.JQueryJqGrid( reverse_lazy('get-treatmentfile'), TreatmentFileSelect, models.TreatmentFile), - validators=[valid_id(models.Treatment)]) + validators=[valid_id(models.TreatmentFile)]) class TreatmentFileForm(ManageOldType, forms.Form): |