diff options
Diffstat (limited to 'taskapp')
-rw-r--r-- | taskapp/forms/user.py | 21 | ||||
-rw-r--r-- | taskapp/views/user.py | 5 |
2 files changed, 2 insertions, 24 deletions
diff --git a/taskapp/forms/user.py b/taskapp/forms/user.py index b80ee81..e13e3d0 100644 --- a/taskapp/forms/user.py +++ b/taskapp/forms/user.py @@ -16,27 +16,6 @@ class LoginForm(forms.Form): username = forms.CharField(max_length=30, required=True) password = forms.CharField(max_length=60, required=True, widget=forms.PasswordInput) -class UserProfileForm(ModelForm): - class Meta: - model = Profile - exclude = ('user','rights') - def __init__(self, *args, **kwargs): - super(UserProfileForm, self).__init__(*args, **kwargs) - instance = getattr(self, 'instance', None) - if instance and instance.id: - self.fields['dob'].widget.attrs['readonly'] = True - self.fields['gender'].widget.attrs['readonly'] = True - self.fields['credits'].widget.attrs['readonly'] = True - self.fields['aboutme'].widget.attrs['readonly'] = True - self.fields['foss_comm'].widget.attrs['readonly'] = True - self.fields['phonenum'].widget.attrs['readonly'] = True - self.fields['homepage'].widget.attrs['readonly'] = True - self.fields['street'].widget.attrs['readonly'] = True - self.fields['city'].widget.attrs['readonly'] = True - self.fields['country'].widget.attrs['readonly'] = True - self.fields['nick'].widget.attrs['readonly'] = True - #fields = ['dob','gender','credits','aboutme','foss_comm','phonenum','homepage','street','city','country','nick'] - class UserProfileEditForm(ModelForm): class Meta: model = Profile diff --git a/taskapp/views/user.py b/taskapp/views/user.py index 95a2711..231bc7d 100644 --- a/taskapp/views/user.py +++ b/taskapp/views/user.py @@ -1,7 +1,7 @@ from django.http import HttpResponse from django.shortcuts import redirect, render_to_response from pytask.taskapp.models import Task -from pytask.taskapp.forms.user import RegistrationForm, LoginForm, UserProfileForm, UserProfileEditForm +from pytask.taskapp.forms.user import RegistrationForm, LoginForm, UserProfileEditForm from pytask.taskapp.events.user import createUser, updateProfile from django.contrib.auth import login, logout, authenticate from django.contrib.auth.models import User @@ -104,10 +104,9 @@ def view_my_profile(request,uid): edit_profile = True if request.user == User.objects.get(pk=uid) else False try: profile = Profile.objects.get(user = User.objects.get(pk=uid)) - view_profile_form = UserProfileForm(instance = profile) except Profile.DoesNotExist: raise Http404 - return render_to_response('user/my_profile.html', {'view_profile_form': view_profile_form,'edit_profile':edit_profile}) + return render_to_response('user/my_profile.html', {'edit_profile':edit_profile,'profile':profile}) def edit_my_profile(request): """ enables the user to edit his/her user profile """ |