Code layout change.
[wolnelektury.git] / src / polls / admin.py
diff --git a/src/polls/admin.py b/src/polls/admin.py
new file mode 100644 (file)
index 0000000..235e8f3
--- /dev/null
@@ -0,0 +1,25 @@
+# -*- 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 .models import Poll, PollItem
+
+
+class PollItemInline(admin.TabularInline):
+    model = PollItem
+    extra = 0
+    readonly_fields = ('vote_count',)
+
+
+class PollAdmin(admin.ModelAdmin):
+    inlines = [PollItemInline]
+
+
+class PollItemAdmin(admin.ModelAdmin):
+    readonly_fields = ('vote_count',)
+
+
+admin.site.register(Poll, PollAdmin)
+admin.site.register(PollItem, PollItemAdmin)