I want to do something like:

{% if ("view_video" in video_perms) OR purchase_override %}

Is that possible?

link|improve this question

71% accept rate
At some point, you should be using the model and the view functions for this. Why isn't this a property of the model object? Or a property of the logged-in user? – S.Lott Jan 17 '11 at 13:33
feedback

1 Answer

up vote 8 down vote accepted

How about the Django template documentation? Tried there?

Gives you:

{% if user in users %}
  If users is a QuerySet, this will appear if user is an
  instance that belongs to the QuerySet.
{% endif %}

and

{% if a == b or c == d and e %}

I'll even give you a link to save you googling:

http://docs.djangoproject.com/en/1.2/ref/templates/builtins/#if

link|improve this answer
1  
Well now. That would be the sensible place to look. I did try there, but on my phone and I couldn't find the bit I needed. Thank you for your help. Sorry for the noob question. – willcritchlow Jan 17 '11 at 9:50
+1 for the backhanded link comment at the end. Nicely played sir. – Josh Smeaton Jan 17 '11 at 10:18
1  
+1 for will's noob-self-acceptance :) Nicely taken sir. – Spacedman Jan 17 '11 at 11:26
@will - It's probably worth noting that more complicated if constructs are only possible in Django 1.2 and later (see the release notes) – Dominic Rodger Jan 17 '11 at 11:41
1  
Heh. I suspect he was just trying to find the docs on his phone while away from a computer. I do that sometimes. Inspiration hits, google a bit on the phone, bookmark anything useful. – Spacedman Jan 17 '11 at 13:36
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

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