{% extends "repapp/base.html" %} {% load static %} {% load crispy_forms_tags %} {% block title %} - Rückfrage zum Gerät {% endblock title %} {% block page_title %} Rückfrage zum Gerät {% endblock page_title %} {% block content %}

Zurück


Rückfrage zum Gerät

{{ question.device.device }} - {{ question.device.manufacturer }} vom {{ question.date|date }}

{% if show_guest %}

Gast: {{ question.device.guest.name }} ({{ question.device.guest.mail }})

{% endif %} {% if question.device.cafe %}

Repair-Café: {{ question.device.cafe.event_date|date }}

{% endif %} {% if question.organisator %}

Organisator: {{ question.organisator.name }}

{% endif %} {% if question.reparateur %}

Reparateur: {{ question.reparateur.name }}

{% endif %}

Offen: {% if question.open %} Ja {% else %} Nein {% endif %}


Frage

{{ question.question|safe }}

Antwort

{% if question.answer %}
{{ question.answer|safe }}
{% else %} Der Gast hat noch nicht geantwortet. {% endif %} {% endblock content %}