Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
737 views
in Technique[技术] by (71.8m points)

check for presence in a list django template

I want to check if a value belongs to a list in django template. Something like this

{% if value in ['Pass','Fail'] %}

How can I achieve this?

question from:https://stackoverflow.com/questions/7481750/check-for-presence-in-a-list-django-template

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

I don't think that you can define a list directly in the template. You could pass a list to the template and do

{% if value in my_list %}

For example:

{% if name in 'foo,bar' %}
    bla
{% endif %}

Alternatively, you could write a template tag which takes parameters like this:

{% ifinlist value "val1,val2,val3" %}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...