from django.contrib import admin

from user.models import UserProfile


admin.site.register(UserProfile)
