Кнопка админки
Добавил кнопку для админки, которая отображается только для пользователей, входящих в группу администраторов
This commit is contained in:
0
asuzr/templatetags/__init__.py
Normal file
0
asuzr/templatetags/__init__.py
Normal file
9
asuzr/templatetags/filters.py
Normal file
9
asuzr/templatetags/filters.py
Normal file
@@ -0,0 +1,9 @@
|
||||
from django import template
|
||||
from django.contrib.auth.models import Group
|
||||
|
||||
register = template.Library()
|
||||
|
||||
@register.filter(name='has_group')
|
||||
def has_group(user, group_name):
|
||||
group = Group.objects.get(name=group_name)
|
||||
return True if group in user.groups.all() else False
|
||||
Reference in New Issue
Block a user