{% if simpl_current_nav != "status" and "status" in simpl_nav and run.status == 0 %}
{% include "includes/icon.html" with icon="back" %}
Return to Game Status
{% else %}
Game Status:
{% if run.status == 0 %}Setup
{% elif run.status == 2 %}
Play & Debrief
{% else %}
{# this shouldn't ever be seen, but it'll make debugging easier if it is #}
{{ run.status }}
{% endif %}
{% endif %}