我创建了一个简单的问题条目表格,我想显示总数。在模板中输入的问题。谁能告诉我怎么做?
问问题
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 回答