{% extends "base.html" %} {% block title %}Filaments — POPS{% endblock %} {% block content %}
Filament Inventory
{% if filaments %} {% for f in filaments %} {% set pct = (f.weight_remaining_g / f.weight_total_g * 100) | int if f.weight_total_g else 0 %} {% endfor %}
Brand Material Color Remaining Price / kg
{{ f.brand or '—' }} {{ f.material.value }}
{% if f.color_hex %} {% endif %} {{ f.color or '—' }}
{{ f.weight_remaining_g | int }}g / {{ f.weight_total_g | int }}g
{% if f.price_per_kg_eur %}€ {{ "%.2f"|format(f.price_per_kg_eur) }}{% else %}—{% endif %}
{% else %}
No filaments in inventory yet.
{% endif %}
{% endblock %}