An "if-style" template tag that checks to see if a user belongs to a specific group (by name).
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 ''
|
More like this
- Template tag - list punctuation for a list of items by shapiromatron 10 months, 1 week ago
- JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 10 months, 2 weeks ago
- Serializer factory with Django Rest Framework by julio 1 year, 5 months ago
- Image compression before saving the new model / work with JPG, PNG by Schleidens 1 year, 5 months ago
- Help text hyperlinks by sa2812 1 year, 6 months ago
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.
#
Please login first before commenting.