s/profile/profiles/
This commit is contained in:
parent
077d300bfb
commit
e9b9abef20
@ -1 +0,0 @@
|
|||||||
default_app_config = 'profile.apps.ProfileConfig'
|
|
1
profiles/__init__.py
Normal file
1
profiles/__init__.py
Normal file
@ -0,0 +1 @@
|
|||||||
|
default_app_config = 'profiles.apps.ProfileConfig'
|
@ -11,8 +11,8 @@ def create_profile(sender, created, instance, **kwargs):
|
|||||||
|
|
||||||
|
|
||||||
class ProfileConfig(AppConfig):
|
class ProfileConfig(AppConfig):
|
||||||
name = 'profile'
|
name = 'profiles'
|
||||||
app_label = 'profile'
|
app_label = 'profiles'
|
||||||
|
|
||||||
def ready(self):
|
def ready(self):
|
||||||
post_save.connect(create_profile, sender=User)
|
post_save.connect(create_profile, sender=User)
|
@ -21,7 +21,7 @@ INSTALLED_APPS = (
|
|||||||
'django.contrib.messages',
|
'django.contrib.messages',
|
||||||
'django.contrib.staticfiles',
|
'django.contrib.staticfiles',
|
||||||
'django_gravatar',
|
'django_gravatar',
|
||||||
'profile',
|
'profiles',
|
||||||
'lifting',
|
'lifting',
|
||||||
)
|
)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user