Run 2to3-3.4
[mygpo.git] / mygpo / votes / admin.py
blob0105add21cfe21d3f2240f22255d76a001c0891e
3 from django.contrib.contenttypes.admin import GenericTabularInline
5 from . import models
8 class VoteInline(GenericTabularInline):
9 """ Inline Admin model for votes """
10 model = models.Vote
11 raw_id_fields = ('user', )