Skip to content

Instantly share code, notes, and snippets.

@EdwardIII
Created February 10, 2013 22:17
Show Gist options
  • Save EdwardIII/4751290 to your computer and use it in GitHub Desktop.
Save EdwardIII/4751290 to your computer and use it in GitHub Desktop.
<div id="book">
<h2 class="title">{{ organiser_name }} {{ event_name }}</h2>
<form id="booking-form" method="post" action="">
{% for ticket_row in ticket_rows %}
<h3>{{ ticket_row.ticket }} {{ forloop.revcounter }}</h3>
{% for formset in ticket_row.formset %}
{{ formset.errors }}
{% for field in formset %}
{{ forloop.counter }}
{{ field }}
{% endfor %}
{% endfor %}
{% endfor %}
<input type="submit" name="submit" value="Pay with PayPal" />
</form>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment