Q&A サイトを構築し、テンプレートに質問を一覧表示しています。私は django-voting を使用して、リスト内の各質問に賛成票/反対票を投じています。投票数の多い順に質問を表示したいと考えています。
アプリに Django Generic Aggregation を追加しましたが、次のエラーが発生しています。
'GenericForeignKey' object has no attribute '_default_manager'
どうしたの?
これが私のモデルです:
#models.py
class Question(models.Model):
movie = models.ForeignKey(Movie, blank=True, null=True)
question_text = models.CharField(verbose_name = "Question", max_length = 100)
q_pub_date = models.DateTimeField(auto_now_add = True)
q_author = models.ForeignKey(User)
景色:
#views.py
def questions(request, movie_id):
p = Movie.objects.get(pk=movie_id)
k = Question.objects.filter(movie = p).order_by('-q_pub_date')
top = generic_annotate(k, Vote.object, Sum('vote'))
return render_to_response('qanda/questions.html',
{'the_question':top}
context_instance = RequestContext(request))
そして私のテンプレート(投票フォームなしで取り除かれました):
#questions.html
{% for question in the_question %}
<p>{{ question.question_text }}
{% endfor %}
このエラーを取り除き、質問を正しい順序で表示するにはどうすればよいですか?