{% block content_inner %}
{% if not simpl_configuring %}
{% block left_nav %}
{% endblock %}
{% endif %}
{% endblock content_inner %}
{% endblock content %}
{% block wizard %}
{% if simpl_configuring %}
{% includecontents "simpl/includes/wizard.html" %}
{% contents title %}Action Steps{% endcontents %}
{% contents info %}Complete the following steps to begin gameplay.{% endcontents %}
{% url 'simpl.config' pk=run.pk as url %}
{% for nav_key, item in simpl_nav.items %}
{% includecontents "simpl/includes/wizard-item.html" %}
{{ nav_key }}
{{ item.name }}
{% contents help %}{{ item.hint }}{% endcontents %}
{% endincludecontents %}
{% endfor %}
{% endincludecontents %}
{% else %}
{% includecontents "simpl/includes/wizard.html" %}
{% contents title %}
Action Steps
{% endcontents %}
{% if run.status < run.STATUS.COMPLETE %}
{% if run.multiplayer %}
{% if run.status == run.STATUS.PLAY %}
Publish Player Reports
{% else %}
Hide Player Reports
{% endif %}
{% endif %}
{% if not run.ended %}End Gameplay{% else %}Restart Gameplay{% endif %}
{% endif %}
{% endincludecontents %}
{% endif %}
{% endblock wizard %}