0

我需要获取所有用户的用户名和组名。我使用的模型是用户(默认)和组(默认)

索引.html:

{% for dato in usuarios %}
    {{dato.first_name|title}}
    {% for item in jefes %}
        {{dato.groups}}
    {% if dato.groups == item.id %} #I don't know to do this if
        {{item.name}}
    {% endif %}
    {% endfor %}
{% endfor %}

看法:

def inicio(request):
    usuarios = User.Group.all()
    grupos = Group.objects.all()
    ctx = {'usuarios':usuarios,'grupos':grupos}
    return render_to_response('index.html', ctx, context_instance=RequestContext(request))
4

1 回答 1

1

您不需要groups视图中的查询集。

{% for dato in usuarios %}
    {{dato.first_name|title}}
    {% for group in dato.groups.all %}
        {{group.name}}
    {% endfor %}
{% endfor %}
于 2013-05-19T03:46:09.927 回答