标签: python django
如何在django admin change_form.html中显示登录用户的用户组?我想在模型的change_form中显示登录用户的组名。例如,我可以使用{{user}}标记显示用户名。如何显示{{user.groups__name}}
答案 0 :(得分:2)
不确定您是否可以直接在模板中执行此操作,但您可以尝试迭代user.groups.all()
user.groups.all()