diff options
author | hardythe1 | 2014-11-24 14:10:14 +0530 |
---|---|---|
committer | hardythe1 | 2014-11-24 14:10:14 +0530 |
commit | 5d76ba88689affe44a676a5cdca6175674a3bd54 (patch) | |
tree | 49d78821d543eda8c867eb06c6f9e3366827afe2 | |
parent | 7bed6ad9013b733c0d18699e4c4ccc8c60baf5be (diff) | |
download | scipy2014-5d76ba88689affe44a676a5cdca6175674a3bd54.tar.gz scipy2014-5d76ba88689affe44a676a5cdca6175674a3bd54.tar.bz2 scipy2014-5d76ba88689affe44a676a5cdca6175674a3bd54.zip |
registered models to appear on admin interface
-rw-r--r-- | website/admin.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/website/admin.py b/website/admin.py index 8c38f3f..40d4893 100644 --- a/website/admin.py +++ b/website/admin.py @@ -1,3 +1,5 @@ from django.contrib import admin - +from website.models import Proposal, Comments # Register your models here. +admin.site.register(Proposal) +admin.site.register(Comments) |