{% extends "layouts/base.html" %} {% load i18n static %} {% block extrahead %} {{ form.media }} {% endblock %} {% block extrastyle %} {% endblock extrastyle %} {% block content %}

{% if box_type %} {% trans "Editar Tipo de Caixa" %} {% else %} {% trans "Criar Novo Tipo de Caixa" %} {% endif %}

{% trans "Voltar" %}

{% if box_type %} {% trans "Editar Informações" %} {% else %} {% trans "Informações do Tipo de Caixa" %} {% endif %}

{% csrf_token %} {% if form.non_field_errors %}
{{ form.non_field_errors }}
{% endif %}
{% trans "Informações Básicas" %}
{{ form.name }} {% if form.name.help_text %} {{ form.name.help_text }} {% endif %} {% if form.name.errors %}
{{ form.name.errors }}
{% endif %}
{{ form.price }} {% if form.price.help_text %} {{ form.price.help_text }} {% endif %} {% if form.price.errors %}
{{ form.price.errors }}
{% endif %}
{{ form.boosters_amount }} {% if form.boosters_amount.help_text %} {{ form.boosters_amount.help_text }} {% endif %} {% if form.boosters_amount.errors %}
{{ form.boosters_amount.errors }}
{% endif %}
{% trans "Probabilidades de Raridade" %} Total: 0%
{{ form.chance_common }} {% if form.chance_common.help_text %} {{ form.chance_common.help_text }} {% endif %} {% if form.chance_common.errors %}
{{ form.chance_common.errors }}
{% endif %}
{{ form.chance_rare }} {% if form.chance_rare.help_text %} {{ form.chance_rare.help_text }} {% endif %} {% if form.chance_rare.errors %}
{{ form.chance_rare.errors }}
{% endif %}
{{ form.chance_epic }} {% if form.chance_epic.help_text %} {{ form.chance_epic.help_text }} {% endif %} {% if form.chance_epic.errors %}
{{ form.chance_epic.errors }}
{% endif %}
{{ form.chance_legendary }} {% if form.chance_legendary.help_text %} {{ form.chance_legendary.help_text }} {% endif %} {% if form.chance_legendary.errors %}
{{ form.chance_legendary.errors }}
{% endif %}
{% trans "Limites de Itens Raros" %}
{{ form.max_epic_items }} {% if form.max_epic_items.help_text %} {{ form.max_epic_items.help_text }} {% endif %} {% if form.max_epic_items.errors %}
{{ form.max_epic_items.errors }}
{% endif %}
{{ form.max_legendary_items }} {% if form.max_legendary_items.help_text %} {{ form.max_legendary_items.help_text }} {% endif %} {% if form.max_legendary_items.errors %}
{{ form.max_legendary_items.errors }}
{% endif %}
{% trans "Itens Permitidos" %}
{{ form.allowed_items }} {% if form.allowed_items.help_text %} {{ form.allowed_items.help_text }} {% endif %} {% if form.allowed_items.errors %}
{{ form.allowed_items.errors }}
{% endif %}
{% trans "Cancelar" %}
{% endblock %}