from django.contrib import admin from .models import Vote, Poll admin.site.register(Vote) admin.site.register(Poll)