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

@ -26,7 +26,7 @@ class GroupForm(forms.ModelForm):
class Meta:
model = Group
fields = ['name', 'parent', 'members', 'tags']
fields = ['name', 'parent', 'members', 'attributes']
widgets = {
'name': forms.TextInput(),
}