{{ error }}
{% endif %}
Rates are fixed via environment variables:
B&W: {{ rate_black if rate_black else 'RATE_PER_M2_BLACK' }} € / m²,
Color: {{ rate_color if rate_color else 'RATE_PER_M2_COLOR' }} € / m²
| Page | Width (m) | Height (m) | Area (m²) | Ink % | Type | Cost (€) |
|---|---|---|---|---|---|---|
| {{ 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 '-' }} | {{ 'Color' if page.is_color else 'B&W' }} | {{ "%.2f"|format(page.cost) }} |
| Total Black Pages | {{ "%.4f"|format(result.total_area_black) }} | {{ "%.2f"|format(result.total_cost_black) }} | ||||
| Total Color Pages | {{ "%.4f"|format(result.total_area_color) }} | {{ "%.2f"|format(result.total_cost_color) }} | ||||
| Grand Total | {{ "%.2f"|format(result.grand_total) }} | |||||