{% extends 'tops/base.html' %} {% load static i18n %} {% block title %}{% trans "Castle & Siege Ranking" %}{% endblock %} {% block tops_content %}

{% trans "Castle & Siege Ranking" %}

{% trans "Status dos castelos e cerco" %}

{% if castles %}
{% for castle in castles %}
{% if castle.image_path %} {{ castle.name }} {% else %}
{{ castle.name }}
{% endif %}
{% if castle.siege_date %} {% trans "Cerco Ativo" %} {% else %} {% trans "Sem Cerco" %} {% endif %}

{{ castle.name }}

{% if castle.clan_name %}
{% trans "Proprietário" %}
{% if castle.clan_crest_image_base64 %} Owner Crest {% endif %} {{ castle.clan_name }}
{% else %}
{% trans "Proprietário" %}
{% trans "Sem proprietário" %}
{% endif %} {% if castle.siege_date %}
{% trans "Data do Cerco" %}
{{ castle.siege_date|date:"d/m/Y H:i" }}
{% endif %} {% if castle.stax %}
{% trans "Taxa" %}
{{ castle.stax }}%
{% endif %}
{% if castle.siege_participants %}
{% trans "Participantes do Cerco" %}
{% for participant in castle.siege_participants %}
{% if participant.clan_crest_image_base64 %} Participant Crest {% endif %} {{ participant.clan_name }}
{% endfor %}
{% endif %}
{% endfor %}
{% else %}

{% trans "Nenhum dado disponível" %}

{% trans "Não foi possível carregar os dados dos castelos no momento." %}

{% endif %}
{% endblock %}