Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to put break and continue in my code but it does'nt works in Django. How can I continue and break using Django for loop. Here is the example

{% for i in i_range %}
{% for frequency in patient_meds.frequency %}
{% ifequal frequency i %}
<td class="nopad"><input type="checkbox" name="frequency-1" value="{{ i }}" checked/> {{ i }} AM</td>
{{ forloop.parentloop|continue }} ////// I does'nt work
{ continue }                      ////// It also does'nt work
{% endifequal %}
{% endfor%}
<td class="nopad"><input type="checkbox" name="frequency-1" value="{{ i }}"/> {{ i }} AM</td>
{% endfor %}
share|improve this question
You need to be clearer. Is this a python problem or a django template problem? Normally templates shouldn't have such logic in them. Can you post a simple example with some code? – Spacedman Feb 7 '11 at 11:59
2  
You will have to show us the code that does not work and explain how it fails (for example by copying the exact error message into your question). – Sven Marnach Feb 7 '11 at 11:59
% for i in i_range %} {% for frequency in patient_meds.frequency %} {% ifequal frequency i %} {{ i }} AM {{ forloop.parentloop|continue }} ////// I does'nt work { continue } ////// It also does'nt work {% endifequal %} {% endfor%} {{ i }} AM {% endfor %} – GoldenBird Feb 7 '11 at 12:20

2 Answers

up vote 9 down vote accepted

For-loops in Django templates are different from plain Python for-loops, so continue and break will not work in them. See for yourself in the Django docs, there are no break or continue template tags. Given the overall position of Keep-It-Simple-Stupid in Django template syntax, you will probably have to find another way to accomplish what you need.

share|improve this answer

Django doesn't support it naturally.

You can implement forloop|continue and forloop|break with custom filters.

http://djangosnippets.org/snippets/2093/

share|improve this answer
1  
I like "here's how" better than, "it's not built in" as an answer, +1 – Skylar Saveland Aug 9 '12 at 16:50

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.