質問の簡単な入力フォームを作成しました。合計数を表示したかったのです。テンプレートに入力された質問の数。誰でもそれを行う方法を教えてもらえますか?
質問する
32 次
2 に答える
3
ベスト プラクティスは、ビューでこれを計算し、その数値をテンプレートに送信することです。
from django.shortcuts import render
from myapp.models import Entry
def form_view(request):
total_entries = Entry.objects.count()
# your other code
return render(request, 'template.html', {'total': total_entries})
あなたのテンプレートで:
The total is {{ total }}
于 2013-05-13T04:42:38.167 に答える
2
次の構文を使用します:-
<p>{{ question_list|length}}</p>
于 2013-05-13T04:43:36.490 に答える