我想显示在我的数据库中注册的雇员总数。使用计数函数。
我的网站views.py:
def home(request):
return render(request, 'dashboard.html')
def return_total_employees(request):
return_total = Employees.objects.aggregate(total=Count('EmployeeCard'))[
'total'
]
return render(request, 'dashboard.html', {'return_total ': return_total })
我的模板:
<h1> {{ view.return_total_employees }} </h1>
1条答案
按热度按时间njthzxwz1#
在render函数中返回的
dict
称为context
。{{return_total}}