如何在我的模板上显示计数函数的值. Django

wribegjk  于 2023-01-31  发布在  Go
关注(0)|答案(1)|浏览(120)

我想显示在我的数据库中注册的雇员总数。使用计数函数。
我的网站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>
njthzxwz

njthzxwz1#

在render函数中返回的dict称为context
{{return_total}}

相关问题