Add updated front end, updated CaseStudy model and profiles app

This commit is contained in:
Livvy Mackintosh
2017-10-31 14:57:26 +00:00
parent f91b4d2a2a
commit 43d6ec989b
30 changed files with 1065 additions and 77 deletions

7
apps/profiles/forms.py Normal file
View File

@ -0,0 +1,7 @@
from django.forms import ModelForm
from django.contrib.auth import get_user_model
class UpdateProfile(ModelForm):
class Meta:
model = get_user_model()