{% extends 'base.html' %} {% load humanize %} {% block title %}{{ vk.bezeichnung }} – Verwaltungskosten{% endblock %} {% block content %}

{{ vk.bezeichnung }}

{{ vk.get_status_display }} {{ vk.get_kategorie_display }}
Rechnungsdaten
Bezeichnung
{{ vk.bezeichnung }}
Betrag
€{{ vk.betrag|floatformat:2 }}
Datum
{{ vk.datum|date:"d.m.Y" }}
{% if vk.lieferant_firma %}
Lieferant / Firma
{{ vk.lieferant_firma }}
{% endif %} {% if vk.rechnungsnummer %}
Rechnungsnummer
{{ vk.rechnungsnummer }}
{% endif %} {% if vk.rentmeister %}
Rentmeister
{{ vk.rentmeister.get_full_name }}
{% endif %} {% if vk.get_effective_zahlungskonto %}
Zahlungskonto
{{ vk.get_effective_zahlungskonto.bank_name }} – {{ vk.get_effective_zahlungskonto.kontoname }}
{% endif %} {% if vk.quellkonto %}
Quellkonto
{{ vk.quellkonto.bank_name }} – {{ vk.quellkonto.kontoname }}
{% endif %}
{% if vk.is_fahrtkosten %}
Fahrtkosten
{% if vk.km_anzahl %}
Kilometer
{{ vk.km_anzahl }} km
{% endif %} {% if vk.km_satz %}
km-Satz
€{{ vk.km_satz|floatformat:2 }}/km
{% endif %} {% if vk.von_ort %}
Von
{{ vk.von_ort }}
{% endif %} {% if vk.nach_ort %}
Nach
{{ vk.nach_ort }}
{% endif %} {% if vk.zweck %}
Zweck
{{ vk.zweck }}
{% endif %}
{% endif %} {% if vk.beschreibung %}
Beschreibung

{{ vk.beschreibung }}

{% endif %} {% if vk.notizen %}
Notizen

{{ vk.notizen }}

{% endif %}
Verknüpfte Dokumente ({{ dms_dokumente.count }}) Hochladen
{% if dms_dokumente %} {% else %}

Keine Dokumente verknüpft.

{% endif %}
{% if email_eingaenge %}
Verknüpfte E-Mails ({{ email_eingaenge.count }})
{% endif %}
Status ändern
{% csrf_token %}
Zeitstempel
Erstellt
{{ vk.erstellt_am|date:"d.m.Y H:i" }}
Aktualisiert
{{ vk.aktualisiert_am|date:"d.m.Y H:i" }}
{% endblock %}