PonyConf/accounts/templatetags/accounts_tags.py

11 lines
178 B
Python
Raw Normal View History

from django import template
from accounts.utils import is_staff
register = template.Library()
@register.filter
def staff(request):
return is_staff(request, request.user)