{% extends 'layouts/layout_tcg.html' %} {% block page_head %} {% endblock %} {% block page_body %} {# #}

Your Games

{{ model.form_filters.hidden_tag() }}
{{ model.form_filters.search.label(class="tcg-label") }} {{ model.form_filters.search(class="tcg-input", placeholder="Search games...") }}
{{ model.form_filters.active_only() }} {{ model.form_filters.active_only.label(class="tcg-label") }}
{{ model.form_filters.is_commander() }} {{ model.form_filters.is_commander.label(class="tcg-label") }}
{% if model.games and model.games|length > 0 %} {% for game in model.games %} {% endfor %} {% else %} {% endif %}
Game ID Type Location Started Status Actions
#{{ game.game_id }} {% if game.is_commander %} Commander {% elif game.is_draft %} Draft {% elif game.is_sealed %} Sealed {% else %} Standard {% endif %} {{ game.location_name or 'Unknown' }} {{ model.format_datetime_text(game.start_on) if game.start_on else 'Not started' }} {% if game.end_on %} Ended {% elif game.active %} Active {% else %} Inactive {% endif %} Join Game

No games found. Start a new battle!

{% include 'components/common/temporary/_overlay_confirm.html' %} {% include 'components/common/temporary/_overlay_error.html' %} {% endblock %}