{% extends "base.html" %} {% block title %}Druckkosten Ergebnis – Studio EinsZwoVier{% endblock %} {% block content %}

Druckkosten für {{ result.filename }}

{% if success %}
{{ success }}
{% endif %} {% if error %}
{{ error }}
{% endif %} {% for page in result.pages %} {% endfor %}
Seite Breite (m) Höhe (m) Fläche (m²) Tinten % Typ Kosten (€)
{{ page.page }} {{ "%.3f"|format(page.width_m) }} {{ "%.3f"|format(page.height_m) }} {{ "%.4f"|format(page.area_m2) }} {{ "%.1f"|format(page.ink_pct) if page.ink_pct is not none else '-' }} {{ 'Farbe' if page.is_color else 'S/W' }} {{ "%.2f"|format(page.cost) }}
Summe S/W {{ "%.4f"|format(result.total_area_black) }} {{ "%.2f"|format(result.total_cost_black) }}
Summe Farbe {{ "%.4f"|format(result.total_area_color) }} {{ "%.2f"|format(result.total_cost_color) }}
Gesamtsumme {{ "%.2f"|format(result.grand_total) }}
{% endblock %}