{% extends "layouts/base.html" %} {% load i18n l10n %} {% load static %} {% load itens_extras %} {% block extrastyle %} {% endblock %} {% block content %}

{% trans "Retirar Item do Servidor" %}

{% trans "Selecione um personagem e retire itens do seu inventário" %}

{% trans "Selecionar Personagem" %}

{% trans "Escolha o personagem para visualizar o inventário" %}

{% if char_id %} {% if items %}

{% trans "Inventário de" %} {{ personagem.char_name }}

{% trans "Clique em um item para selecioná-lo" %}

{% for item in items %}
{{ item.item_name }}
{{ item.name }}
{% trans "Encantamento" %}: {{ item.enchant }}
{% trans "Quantidade" %}: {{ item.amount }}
{% trans "Localização" %}: {{ item.location }}
{% endfor %}
{% if items.has_other_pages %} {% if items.has_other_pages %}
{% with page_param='page' current_page=current_page total_pages=total_pages has_previous=has_previous has_next=has_next previous_page_number=previous_page_number next_page_number=next_page_number page_range=page_range show_first=show_first show_last=show_last show_first_ellipsis=show_first_ellipsis show_last_ellipsis=show_last_ellipsis %} {% with query_params='char_id='|add:char_id %} {% include 'includes/pagination_custom.html' %} {% endwith %} {% endwith %}
{% endif %} {% endif %}

{% trans "Retirar Item" %}

{% trans "Preencha os dados para retirar o item selecionado" %}

{% csrf_token %}
{% else %}

{% trans "Inventário Vazio" %}

{% trans "Este personagem não possui itens no inventário" %}

{% trans "Nenhum item encontrado" %}

{% trans "Nenhum item encontrado no inventário deste personagem." %}

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