fix inconsistent naming

This commit is contained in:
Jens Langhammer
2019-02-16 10:59:23 +01:00
parent 89722336e3
commit 744a320731
5 changed files with 3 additions and 3 deletions

View File

@ -0,0 +1,14 @@
"""passbook core user forms"""
from django import forms
from passbook.core.models import User
class UserDetailForm(forms.ModelForm):
"""Update User Details"""
class Meta:
model = User
fields = ['username', 'first_name', 'last_name', 'email']