{% extends "mobile/base.html" %} {% block title %}Movements — Bills{% endblock %} {% block content %}

Missing invoices ({{ rows|length }} rows)

+ Upload
{% if rows %}
{% for row in rows %} {% endfor %}
Company / Reason Amount (€)
{{ row.label }} {% if row.amount %} {{ '%.2f'|format(row.amount|float) }} {% else %} — {% endif %}
{% else %}
All done

All movements have an invoice attached.

{% endif %} {% endblock %}