I know this is an incredibly noob question but I can't seem to find an example of what I need (there's some for loop examples here but not what i need..
I can get this working using a simple script but the template syntax really throws me.
I need to simply add 10 to each iteration and just have a select list of multiples of ten. However, I can't get even the following simple example to work:
<select id="multiples">
{% for num in range(5,100) %}
<option value="{{ num }}">{{ num }}</option>
{% endfor %}
Could anyone offer a hand please, thanks.