Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is it possible to create a Django template tag which evaluates to a boolean?

Eg, can I do:

{% if my_custom_tag %}
    ..
{% else %}
    ..
{% endif %}

At the moment I've written it as an as tag, which works fine like this:

{% my_custom_tag as var_storing_result %}

But I was just curious if I could do it the other way as I think it'd be nicer if I didn't have to assign the result to a variable first.

Thanks!

share|improve this question

3 Answers

up vote 2 down vote accepted

You'd have to write a custom {% if %} tag of some sort to handle that. In my opinion, it's best to use what you already have in place. It works well, and is easy for any other developers to figure out what's going on.

share|improve this answer

I don't see why you would want to.

Template tags are for presentation logic; e.g., what to display on the screen. That is template tags take in variables or text within a block as input, manipulate the variables/text and decide what to display. They are not supposed to evaluate to variables (like Booleans with True/False values that can be interpretted by the if template tag) that would be interpreted by the presentation logic.

share|improve this answer
Template tags like the if/for tags are for presentation logic. There are other uses for tags that should return a value. A template tag to return the current page, so you can change the css styling on a tab, for example. Django provides the ability to directly insert a variable into the context from a template tag. – Alex Jillard May 19 '11 at 14:32
@Alex: All template tags are for presentation logic (vs application logic) and django's docs state "the Django template system is not simply Python embedded into HTML. This is by design: the template system is meant to express presentation, not program logic". If you apply a date filter to put the date in a human readable format or have the right CSRF token appear with {% csrf_token %} both are presentation logic that do not return values to be interpreted by further logic (only info to be displayed in the html response). Template tags should not be defining variables that get interpreted. – dr jimbob May 19 '11 at 19:25
@Alex: (Ran out of comment room; the quote was taken from the philosophy section of docs.djangoproject.com/en/dev/topics/templates ). Furthermore, so if you have some tag that says display in the html source the name of the current page, great - presentation logic. But you shouldn't ever have to do presentation logic based on the results of other presentation logic. E.g., if the csrf_token contains some string show "X". You can build presentation logic on top of application variables. – dr jimbob May 19 '11 at 19:33
It's up to the developer to determine where the logic is best placed. I agree that the primary purpose of the template tags is for manipulating the presentation of the page, and that application logic should be in the view. You can't assume that there are no valid reasons for having a template tag return a value, or that doing so automatically means you're doing app logic in the template. – Alex Jillard May 19 '11 at 19:45
@Alex: A template tag (used for presentation logic) should only be used to determine what text to display in a response. Your view lets you put whatever variables you want in your context based on whatever logic you want. Template tags do the magic of taking your context variables and converting it to text to display in the response. I can't come up with a presentation logic reason to give template tags response values other than a simple filter which is allowed; e.g., if you want a statement like {% if name|upper == "JOHN" %}). – dr jimbob May 19 '11 at 20:02

One alternative might be to define a custom filter that returns a boolean:

{% if my_variable|my_custom_boolean_filter %}

but that will only work if your tag depends on some other template variable.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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