Quiero un menú personalizado según el grupo al que pertenece. Estoy usando Django 1.10.1, allauth y así sucesivamente. Cuando intento crear mi etiqueta de plantilla, falla y dice: ¨
TemplateSyntaxError at /
'my_templatetag' is not a registered tag library. Must be one of:
account
account_tags
admin_list
admin_modify
admin_static
admin_urls
cache
i18n
l10n
log
socialaccount
socialaccount_tags
static
staticfiles
tz
'my_templatetag.py' se ve así:
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 group in user.groups.all()
y ese error viene en mi archivo .html que dice,
{% load my_templatetag %}
Intenté reiniciar el servidor como millones de veces, también intenté cambiar todos los nombres y la aplicación es parte de INSTALLED_APPS en settings.py. ¿Qué estoy haciendo mal?