Skip to content
This repository was archived by the owner on Nov 8, 2018. It is now read-only.

Commit ebc1b2b

Browse files
committed
Profile functionality moved to separate app
1 parent 8d1cb0b commit ebc1b2b

31 files changed

+8837
-10
lines changed

infohub/settings.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
'malaria_api',
3434
'webhub',
3535
'signup',
36+
'profiles',
3637
)
3738

3839
MIDDLEWARE_CLASSES = (

infohub/urls.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,6 @@
1010
url(r'^malaria/', include('malaria.urls', namespace='malaria')),
1111
url(r'^webhub/', include('webhub.urls', namespace='webhub')),
1212
url(r'^signup/', include('signup.urls', namespace='signup')),
13+
url(r'^profiles/', include('profiles.urls', namespace='profiles')),
14+
1315
)

profiles/__init__.py

Whitespace-only changes.

profiles/admin.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
from django.contrib import admin
2+
3+
# Register your models here.

profiles/models.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
from django.db import models
2+
3+
# Create your models here.

profiles/templates/profiles/bootstrap/css/bootstrap-theme.css

Lines changed: 347 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

profiles/templates/profiles/bootstrap/css/bootstrap-theme.css.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)