我一直在測試幾個django投票應用程序,發現qhonuskan-votes。我已經設法安裝它,並且效果很好。但是,我也希望它允許未經過身份驗證的用戶的投票權,這是我無法做到的。需要此幫助請。 Here is the link for its models.py, views.py and compact.py files of this app. models views compact
我正在嘗試在Django中檢索頂級投票項目。以下是相關的代碼行: originalList = [x[0] for x in list(Vote.objects.get_top(Item, endIdx))[startIdx:]]
這些索引是用於分頁的目的。當我嘗試在瀏覽器中加載頁面時,我得到: AttributeError at /items/top/
'Settings' object
我使用django-voting和有工作的主頁項目的排列順序上的應用程序使用工作Eric Florenzano's custom VoteAwareManager technique: models.py class VoteAwareManager(models.Manager):
""" Get top votes. hot = VoteAwareManager() """