{% extends "layouts/base.html" %} {% load i18n static %} {% load itens_extras %} {% block title %}{% trans "Comparação de Snapshots" %}{% endblock %} {% block extrastyle %} {% endblock %} {% block content %}
| {% trans "Item" %} | {% trans "Localização" %} | {% trans "Quantidade Inicial" %} | {% trans "Quantidade Final" %} | {% trans "Mudança" %} | {% trans "Variação %" %} | {% trans "Categoria" %} | |
|---|---|---|---|---|---|---|---|
|
{{ item.item_name }}
ID: {{ item.item_id }}
|
{{ item.location }} | {{ item.from_quantity|floatformat:0 }} | {{ item.to_quantity|floatformat:0 }} | {% if item.change > 0 %}+{% endif %}{{ item.change|floatformat:0 }} | {% if item.change_percentage > 0 %}+{% endif %}{{ item.change_percentage }}% | {{ item.category.name|default:"-" }} | |
| {% trans "Nenhuma mudança encontrada." %} | |||||||