diff options
author | hardythe1 | 2015-07-03 15:07:22 +0530 |
---|---|---|
committer | hardythe1 | 2015-07-03 15:07:22 +0530 |
commit | ba208f88410ac69c4f97f6c3974dc401f2200885 (patch) | |
tree | bd80def82bb821b240effa06fd4b2a3eca8041bf /website/admin.py | |
parent | bf30b60b10a54e872db9ad897b42a70725a003ae (diff) | |
download | SciPy2015-ba208f88410ac69c4f97f6c3974dc401f2200885.tar.gz SciPy2015-ba208f88410ac69c4f97f6c3974dc401f2200885.tar.bz2 SciPy2015-ba208f88410ac69c4f97f6c3974dc401f2200885.zip |
"add models for CFP"
Diffstat (limited to 'website/admin.py')
-rw-r--r-- | website/admin.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/website/admin.py b/website/admin.py index 8c38f3f..5e2a00f 100644 --- a/website/admin.py +++ b/website/admin.py @@ -1,3 +1,6 @@ from django.contrib import admin +from website.models import Proposal, Comments # Register your models here. +admin.site.register(Proposal) +admin.site.register(Comments) |