1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38 | from django import template
from django.template import resolve_variable
from django.contrib.auth.models import Group
register = template.Library()
@register.tag()
def ifusergroup(parser, token):
""" Check to see if the currently logged in user belongs to a specific
group. Requires the Django authentication contrib app and middleware.
Usage: {% ifusergroup Admins %} ... {% endifusergroup %}
"""
try:
tag, group = token.split_contents()
except ValueError:
raise template.TemplateSyntaxError("Tag 'ifusergroup' requires 1 argument.")
nodelist = parser.parse(('endifusergroup',))
parser.delete_first_token()
return GroupCheckNode(group, nodelist)
class GroupCheckNode(template.Node):
def __init__(self, group, nodelist):
self.group = group
self.nodelist = nodelist
def render(self, context):
user = resolve_variable('user', context)
if not user.is_authenticated:
return ''
try:
group = Group.objects.get(name=self.group)
except Group.DoesNotExist:
return ''
if group in user.groups.all():
return self.nodelist.render(context)
return ''
|
Comments
Line 30 should read: if not user.is_authenticated()
Is authenticated is a method, not an attribute. Oddly it seems to work fine despite that.
#
I have posted a version with support for "else" blocks. It also fixes the small bug that I commented on above.
#