﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
30428	Custom tags not loaded.	Ozan Gerdaneri	nobody	"Hi,
I followed the instructions defined in:

https://docs.djangoproject.com/en/2.2/howto/custom-template-tags/

Eventhough  {%load poll_extras %} does not give any error, which make me think that all the tags defined in the poll_extras .py file loaded properly, I cannot access the tags defined in the file.   

For example, this is the tag definition:


{{{
from django import template
register = template.Library()

@register.simple_tag(name='testtag')
def some_function():
    return 5 

}}}

This is the error I got when defined like that  :


{{{
{%load poll_extras %}
{%testtag%}
}}}


Invalid block tag on line 89: '""testtag""'. Did you forget to register or load this tag?"	Bug	closed	Template system	dev	Normal	worksforme	templatetags load fail		Unreviewed	0	0	0	0	0	0
