Skip to content
Snippets Groups Projects
Verified Commit 71f49887 authored by Tom Teichler's avatar Tom Teichler :beers:
Browse files

Make ImageField optional.

parent 65e20d5f
No related branches found
No related tags found
Loading
......@@ -143,7 +143,7 @@ class EditUserForm(forms.Form):
place = forms.CharField(label=_('Ort'))
# Only editable by board
jpeg_photo = forms.ImageField(label=_('Foto'))
jpeg_photo = forms.ImageField(label=_('Foto'), required=False)
class EditVoucherForm(forms.Form):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment