reg/admin.py
author nishanth
Tue, 13 Apr 2010 12:07:44 +0530
changeset 22 737ec98cf6df
parent 0 30a0f9e20fd4
child 63 d960c570ce63
permissions -rw-r--r--
added the missing return statements in clean functions of forms .

from django.contrib import admin
from workshop.reg.models import Profile, Event

admin.site.register(Profile)
admin.site.register(Event)