{% load i18n %} {% load common mathfilters %} {{ node|default:"Model Draw Generator" }}

{{ node|default:"Model Draw Generator" }}

Using this tool you can produce a model draw, designed to be fair and provide best value to participants.

You can always tweak the to suit your individual needs, however this will give you a great base from which to start.

{% for f in form %} {% field f %} {% endfor %}
{% if data %}

Pools

{# two layers of with to build up the divisor for columns #} {% for pool in data.pools %}

Pool {{ forloop.counter }}

{% for team in pool %}

{{ team }} {% if team.order %}{{ team.order }}{% endif %}

{% endfor %}
{% endfor %}
{% if form.get_absolute_url %} {% endif %}

Draw Formats

{% with n=data.draw_formats|length %} {% for format in data.draw_formats %}

{{ format.label }}

{% if forloop.last %}

{% for round in format.format %} {{ round|stringformat:"s"|linebreaksbr }}
{% endfor %}

{% else %}

{{ format.format|linebreaksbr }}

{% endif %}
{% endfor %} {% endwith %}
{% endif %}