{% extends "skin.html" %} {% block content %}

{{ program.reference }}

Show this page again, or go back to the program registration list.

{% for config,entries in configurations %}

{{ config.pk }}: {{ config.cities }} cities in a {{ config.size }} × {{ config.size }} grid

To get your program to request a city plan of this configuration it should make a POST request to /program/{{ program.reference }}/new/{{ config.pk }}/. The POST body must contain valid JSON — the text null is recommended, but whatever it does send will be ignored. You will receive back a HTTP redirect to the city plan URL which you can then use as the basis for fetching the initial plan information and for making moves.

{% if entries.count %} {% else %}

No entries

{% endif %} {% endfor %} {% endblock %}