reg/admin.py
author nishanth
Fri, 16 Apr 2010 11:14:31 +0530
changeset 62 b7e47cc39342
parent 0 30a0f9e20fd4
child 63 d960c570ce63
permissions -rwxr-xr-x
renamed the project to ws_app and modified imports accordingly .

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

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