{% extends "base.html" %} {% load static %} {% block title %}Bilagsdetalj{% endblock %} {% block content %}

{{ bilag.tittel }}

Opprettet: {{ bilag.dato }}

{% if bilag.godkjent %}
Godkjent av {{ bilag.godkjenner }}
{% elif bilag.avvist %}
Avvist
{% else %}
Venter på godkjenning
{% endif %} {% if show_mva %}{% endif %} {% for linje in bilag.linjer %} {% if show_mva %} {% endif %} {% empty %} {% endfor %}
Beskrivelse BeløpMVA
{{ linje.beskrivelse }} {{ linje.belop|floatformat:2 }}{{ linje.mva|floatformat:2 }}
Ingen linjer
{% if user.can_approve %}
{% csrf_token %} {% include "bilag/_kommentar_felt.html" %}
{% endif %} {% block extra_js %} {% endblock %} {% endblock %}