޸tag perm_total -> perm_count

This commit is contained in:
guanghongwei 2015-01-24 14:49:38 +08:00
parent df82c17c1c
commit aa7e8c0ed4

View File

@ -47,7 +47,7 @@ def bool2str(value):
else:
return u''
@register.filter(name='perm_total')
def perm_total(user_id):
@register.filter(name='perm_count ')
def perm_count(user_id):
user = User.objects.get(int(user_id))
return user.permission_set.all().count()