reg/admin.py
author nishanth
Fri, 16 Apr 2010 16:45:11 +0530
changeset 77 121a7aa78469
parent 63 d960c570ce63
permissions -rwxr-xr-x
changed the urls to map to new url configuration.

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

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