diff options
-rw-r--r-- | devel/views.py | 2 | ||||
-rw-r--r-- | templates/devel/profile.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/devel/views.py b/devel/views.py index 381b4a4a..e999b7fa 100644 --- a/devel/views.py +++ b/devel/views.py @@ -74,7 +74,7 @@ class UserProfileForm(forms.ModelForm): def change_profile(request): if request.POST: form = ProfileForm(request.POST) - profile_form = UserProfileForm(data=request.POST, instance=request.user.get_profile()) + profile_form = UserProfileForm(request.POST, request.FILES, instance=request.user.get_profile()) if form.is_valid() and profile_form.is_valid(): request.user.email = form.cleaned_data['email'] if form.cleaned_data['passwd1']: diff --git a/templates/devel/profile.html b/templates/devel/profile.html index 4da6dad1..2f16801b 100644 --- a/templates/devel/profile.html +++ b/templates/devel/profile.html @@ -6,7 +6,7 @@ <h2>Developer Profile</h2> - <form id="edit-profile-form" method="post">{% csrf_token %} + <form id="edit-profile-form" enctype="multipart/form-data" method="post">{% csrf_token %} <p><em>Note:</em> This is the public information shown on the developer and/or TU profiles page, so please be appropriate with the information you provide here.</p> |