我只想在用户属于某个组时才显示链接。
html:
{% if user.is_authenticated %}
{% users_in_group = Group.objects.get(name="boss").user_set.all() %}
{% if user in users_in_group %}
<li><a href='/register'>Create User</a></li>
{% endif %}
{% endif %}
很感谢