diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2019-02-12 17:00:05 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2019-02-12 17:00:05 +0100 |
commit | afa015d7f108c3936c69d77db2152dd995a47cd4 (patch) | |
tree | a39224c9170fe8b713b7ae50806aa9e0d2cc951e /archaeological_warehouse/forms.py | |
parent | 596c193c38c5eef0ad0798d690e65215744346bf (diff) | |
download | Ishtar-afa015d7f108c3936c69d77db2152dd995a47cd4.tar.bz2 Ishtar-afa015d7f108c3936c69d77db2152dd995a47cd4.zip |
Fix container form (no image field)
Diffstat (limited to 'archaeological_warehouse/forms.py')
-rw-r--r-- | archaeological_warehouse/forms.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/archaeological_warehouse/forms.py b/archaeological_warehouse/forms.py index 6e03a8669..9175a78d6 100644 --- a/archaeological_warehouse/forms.py +++ b/archaeological_warehouse/forms.py @@ -194,9 +194,6 @@ class ContainerForm(CustomForm, ManageOldType, forms.Form): reverse_lazy('autocomplete-warehouse'), associated_model=models.Warehouse, new=True), validators=[valid_id(models.Warehouse)]) - image = forms.ImageField( - label=_(u"Image"), help_text=mark_safe(get_image_help()), - max_length=255, required=False, widget=widgets.ImageFileInput()) comment = forms.CharField(label=_(u"Comment"), widget=forms.Textarea, required=False) TYPES = [ |