{% for question in questions_not_sent %}
| {{ question.device.device }} |
{{ question.device.manufacturer }} |
{{ question.device.guest.name }} |
{{ question.organisator.mail }} |
{{ question.reparateur.mail }} |
{% if question.sent %}
Ja
{% else %}
Nein
{% endif %}
|
{% if question.answered %}
Ja
{% else %}
Nein
{% endif %}
|
ansehen
|
{% if not question.sent %}
senden
{% endif %}
|
{% endfor %}
{% for question in questions_open_and_answered %}
| {{ question.device.device }} |
{{ question.device.manufacturer }} |
{{ question.device.guest.name }} |
{{ question.organisator.mail }} |
{{ question.reparateur.mail }} |
{% if question.sent %}
Ja
{% else %}
Nein
{% endif %}
|
{% if question.answered %}
Ja
{% else %}
Nein
{% endif %}
|
ansehen
|
{% if not question.sent %}
senden
{% endif %}
|
{% endfor %}