{% extends "ui/report_base.html" %} {% load url from future %} {% load icons %} {% load formats %} {% load bob %} {% load i18n %} {% block contentarea %}

Margins Report

{% trans "This report allows you to compare current and simulated costs for selected venture within given time frame." %}
{% for f in form %} {% if f.label %}
{{ f }} {% if f.errors %} {% for e in f.errors %}{{ e }}{% endfor %} {% endif %}
{% endif %} {% endfor %} {% spaceless %}{% endspaceless %}
{% for f, mk in zip_margin_kinds_form %} {% endfor %}
Margin kind name Device count Current margin Current cost Simulated margin Simulated cost
{{ mk.name }} {{ mk.count }} {{ mk.margin }}% {{ mk.total|currency }} {{ f }} {% if f.errors %} {% for e in f.errors %}{{ e }}{% endfor %} {% endif %} {{ mk.sim_cost|currency }}
Total {{ total_count }} {{ total_cost|currency }} {{ total_sim|currency }}
{% endblock %}