I try to use templatetags in django but I have trouble. I defined enumhelper.py in the templatetags package. Then I load it at the top of employer_list.html like

{% extends "base.html" %}
{% load enumhelper %}
{% block title %}{% endblock %}

Content of enumhelper.py is really simple.

register = template.Library()

@register.tag()
def enum_worker_number_range():
    return "sdsdsd" 

Then I want to use enum_worker_number_range in the employer_list.html as

{% block enumhelper %}
    {{ enum_worker_number_range }}
{% endblock %}

I expect to write sdsdsd at the page but I couldn't see anything. I am sure that load opearition is sucessful beacuse when I change enumhelper name it gives error.

Although load operation is successful, why I can't see the return value of enum_worker_number_range ?

Thanks

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted
@register.simple_tag
def enum_worker_number_range():
    return "sdsdsd" 
link|improve this answer
1  
also since enum_worker_number_range is a tag, in template you have to write {% enum_worker_number_range %} – Ashok May 25 '11 at 11:15
Thank you, it works perfect ! – brsbilgic May 25 '11 at 11:50
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.