[Django Templates] How to get 'switch-case' statement functionality in Django templates? - Stack Overflow most recent 30 from stackoverflow.com2009-12-19T13:33:09Zhttp://stackoverflow.com/feeds/question/725771http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/725771/django-templates-how-to-get-switch-case-statement-functionality-in-django-tem2[Django Templates] How to get 'switch-case' statement functionality in Django templates?Czlowiekwidmo2009-04-07T13:43:03Z2009-10-14T07:11:36Z
<p>Hi,
I found a <a href="http://www.djangosnippets.org/snippets/878/" rel="nofollow">link</a> to have a 'switch' tag in Django templates, but I was wondering if this can be somehow achieved without it. Using only the stuff which comes with Django? Basically is there other way then using multiple 'if' or 'ifequal' statements?</p>
<p>Thanks in advance for any tips/suggestions.</p>
http://stackoverflow.com/questions/725771/django-templates-how-to-get-switch-case-statement-functionality-in-django-tem/726118#7261188Answer by gerdemb for [Django Templates] How to get 'switch-case' statement functionality in Django templates?gerdemb2009-04-07T14:46:47Z2009-04-07T14:46:47Z<p>Unfortunately, this is not possible with the default Django template engine. You'll have to write something ugly like this to emulate a switch.</p>
<pre><code>{% if a %}
{{ a }}
{% else %}
{% if b %}
{{ b }}
{% else %}
{% if c %}
{{ c }}
{% else %}
{{ default }}
{% endif %}
{% endif %}
{% endif %}
</code></pre>
<p>or if only one if condition can be true and you don't need a default.</p>
<pre><code>{% if a %}
{{ a }}
{% endif %}
{% if b %}
{{ b }}
{% endif %}
{% if c %}
{{ c }}
{% endif %}
</code></pre>
<p>Usually, when the template engine is not powerful enough to accomplish what you want this is a sign that the code should be moved into Django view instead of in the template. For example:</p>
<pre><code># Django view
if a:
val = a
elif b:
val = b
elif c:
val = c
else:
val = default
# Template
{{ val }}
</code></pre>
http://stackoverflow.com/questions/725771/django-templates-how-to-get-switch-case-statement-functionality-in-django-tem/1057394#10573942Answer by Ber for [Django Templates] How to get 'switch-case' statement functionality in Django templates?Ber2009-06-29T09:28:35Z2009-06-29T09:28:35Z<p>In a very general view, the need for a switch statement is a sign that there is a need to create new classes and objects that capture the different "cases".</p>
<p>Then, instead of "swtich"ing all over the place, you only need to call an object method or reference an object attribute and your done. </p>
http://stackoverflow.com/questions/725771/django-templates-how-to-get-switch-case-statement-functionality-in-django-tem/1564705#15647051Answer by Roy Leban for [Django Templates] How to get 'switch-case' statement functionality in Django templates?Roy Leban2009-10-14T07:11:36Z2009-10-14T07:11:36Z<p>To the previous responders: Without understanding the use case, you've made assumptions and criticized the questioner. @Ber says "all over the place" which is certainly not implied by the questioner. Not fair.</p>
<p>I have a case where I would like to do a {%switch%} statement in exactly one place in my Django template. Not only is it not convenient to move the equivalent of the switch statement into Python code, but that would actually make both the view and the template harder to read and take simple conditional logic that belongs in one place and split it into two places.</p>
<p>In many cases where I could imagine a {%switch%} (or an {%if%}) being useful, not using one requires putting HTML in a view. That's a far worse sin and is why {%if%} exists in the first place. {%switch%} is no different.</p>
<p>Fortunately, Django is extensible and multiple people have implemented switch. Check out:</p>
<p><a href="http://www.djangosnippets.org/snippets/967/" rel="nofollow">http://www.djangosnippets.org/snippets/967/</a></p>