2012-04-30 55 views

回答

4

所有用戶的列表中的任何方法傳遞適當的queryset到您的模板:

from django.contrib.auth.models import User 
from django.shortcuts import render 

def foo(request): 
    return render(request,'users.html',{'users': User.objects.all()}) 

或者,如果這是你需要的所有模板,寫一個template context processor並將其添加到那裏。

相關問題