core(minor): tags -> attributes, add attributes to user, add propertymappings to source

This commit is contained in:
Langhammer, Jens
2019-10-11 12:47:06 +02:00
parent c782585287
commit fc69b6851d
4 changed files with 35 additions and 3 deletions

View File

@ -11,7 +11,7 @@ class UserForm(forms.ModelForm):
class Meta:
model = User
fields = ['username', 'name', 'email', 'is_staff', 'is_active']
fields = ['username', 'name', 'email', 'is_staff', 'is_active', 'attributes']
widgets = {
'name': forms.TextInput
}