{% extends 'base.html' %} {% block header %}

{% block title %}Flag Details{% endblock %}

{% endblock %} {% block content %} {% if g.team is defined and g.place is defined and g.nation is defined %}

{{ g.nation }} {{ g.nation }}

{% if g.missing_flag is false %}

The '{{ g.place }}'-flag of {{ g.nation }} for your team {{ g.team }} is in your collection already. Doesn't it look amazing?!:)

{% else %}

The '{{ g.place }}'-flag of {{ g.nation }} is missing for your team {{ g.team }}. Let's grab that flag!;)

{% if g.bookable == True %}

Do you want to search for opponents to challenge? This may take up to five minutes!

{% else %}

...but: first you will have to wait until Thursday after 7 a.m. UTC!:/

{% endif %} {% if g.challengeable | length > 0 %}

There are {{ g.challengeable | length }} supporter-teams challengeable in {{ g.nation }} at the moment.

{% for item in g.challengeable %}

{{ item[1] }}

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