From 5d76ba88689affe44a676a5cdca6175674a3bd54 Mon Sep 17 00:00:00 2001 From: hardythe1 Date: Mon, 24 Nov 2014 14:10:14 +0530 Subject: registered models to appear on admin interface --- website/admin.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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) -- cgit