1
from django.contrib import admin
2
from ws_app.reg.models import Profile, Event
3
4
admin.site.register(Profile)
5
admin.site.register(Event)