selected cites in admin
[wolnelektury.git] / apps / social / admin.py
diff --git a/apps/social/admin.py b/apps/social/admin.py
new file mode 100755 (executable)
index 0000000..298638a
--- /dev/null
@@ -0,0 +1,10 @@
+# -*- coding: utf-8 -*-
+# This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
+# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
+#
+from django.contrib import admin
+
+from social.models import Cite
+
+
+admin.site.register(Cite)