feedback/admin.py
author nishanth
Tue, 13 Apr 2010 14:54:06 +0530
changeset 28 14c5ccb18159
parent 1 18dc0362f550
child 63 d960c570ce63
permissions -rw-r--r--
now opening and closing of feedback quiz and registration can be done only by staff users .

from django.contrib import admin

from workshop.feedback.models import Feedback

admin.site.register(Feedback)