Migrate applications to the new admin interface.
[matthijs/projects/xerxes.git] / base / admin.py
diff --git a/base/admin.py b/base/admin.py
new file mode 100644 (file)
index 0000000..4353ce3
--- /dev/null
@@ -0,0 +1,7 @@
+from django.contrib import admin
+from xerxes.base.models import UserProfile
+
+class UserProfileAdmin(admin.ModelAdmin):
+    pass
+
+admin.site.register(UserProfile, UserProfileAdmin)