Thomas Waldmann b5d036eb72 add email to user profile form, so it can be updated by the user
cosmetic change to the profile view headings
2013-10-31 23:41:44 +01:00

11 lines
235 B
Python

# -*- coding: utf-8 -*-
from django import forms
from django.contrib.auth.models import User
class UserProfileForm(forms.ModelForm):
class Meta(object):
model = User
fields = ['first_name', 'last_name', 'email']