Thomas Waldmann aa425c3402 add UserProfiles with additional metadata (for now: language)
as the migrations depend on settings.LANGUAGES, I put a complete list there with what we have .po files for.
2014-11-25 14:08:48 +01:00

22 lines
506 B
Python

# -*- coding: utf-8 -*-
from django import forms
from django.contrib.auth import get_user_model
from .models import UserProfile
class UserForm(forms.ModelForm):
class Meta(object):
model = get_user_model()
fields = ['first_name', 'last_name', 'email']
widgets = {
'email': forms.widgets.TextInput(attrs=dict(autofocus=None)),
}
class UserProfileForm(forms.ModelForm):
class Meta(object):
model = UserProfile
fields = ['language', ]