[Answered ]-Django (1.6) custom user model

2👍

It seems django-voting app has not been updated for a while. Any app should not directly reference the User model anymore.

It is better to change the models.py (django-voting) to this:

from django.conf import settings

    user = models.ForeignKey(settings.AUTH_USER_MODEL)
👤arocks

Leave a comment