How can I make this loop to print form fields where XXXXXXXX is the value of ticket.id?
{% for ticket in zone.tickets %}
{{ ticket.id }}: {{ form.ticket_count_XXXXXXXX }}
{% endfor %}
So the output to be something like this...
1: <input ... name="ticket_count_1">
10: <input ... name="ticket_count_10">
12: <input ... name="ticket_count_12">
3: <input ... name="ticket_count_3">