{% extends "base.html" %} {% block title %}{{ contact.first_name }} {{ contact.last_name }} - Kontakt-Details{% endblock %} {% block content %}

{{ contact.first_name }} {{ contact.last_name }}

{{ contact.position or 'Keine Position' }} {{ contact.institution_name }}

Zurück
Telefonnummern
{% if contact.phones %}
    {% for phone in contact.phones %}
  • {{ phone.detail_value }} {% if phone.detail_label %} {{ phone.detail_label }} {% endif %}
  • {% endfor %}
{% else %}

Keine Telefonnummern hinterlegt.

{% endif %}
E-Mail-Adressen
{% if contact.emails %}
    {% for email in contact.emails %}
  • {{ email.detail_value }} {% if email.detail_label %} {{ email.detail_label }} {% endif %}
  • {% endfor %}
{% else %}

Keine E-Mail-Adressen hinterlegt.

{% endif %}
Notizen
{% for note in contact.notes %}
{{ note.created_at.strftime('%d.%m.%Y %H:%M') }} {% if note.created_by %} • {{ note.created_by }}{% endif %} {% if note.version > 1 %} v{{ note.version }} {% endif %}
{{ note.note_text|nl2br|safe }}
{% endfor %}
{% if not contact.notes %}

Noch keine Notizen vorhanden.

{% endif %}
{% endblock %}