61 lines
1.9 KiB
HTML
61 lines
1.9 KiB
HTML
{% extends "repapp/base.html" %}
|
|
{% block title %}
|
|
- {{ device.device }}
|
|
{% endblock title %}
|
|
{% block page_title %}
|
|
Gerät: {{ device.device }}
|
|
{% endblock page_title %}
|
|
{% block content %}
|
|
<table class="table">
|
|
<tbody>
|
|
<tr>
|
|
<th scope="row">Art des Geräts</th>
|
|
<td>{{ device.device }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Hersteller & Modell/Typ</th>
|
|
<td>{{ device.manufacturer }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Fehlerbeschreibung</th>
|
|
<td>{{ device.error }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Folgetermin</th>
|
|
<td>
|
|
{% if device.follow_up %}
|
|
Ja
|
|
{% else %}
|
|
Nein
|
|
{% endif %}
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Foto vom Gerät</th>
|
|
<td>
|
|
{% if device.device_picture %}
|
|
<img alt="Foto vom Gerät"
|
|
height="100%"
|
|
width="50%"
|
|
src="/media/{{ device.device_picture }}" />
|
|
{% else %}
|
|
kein Bild
|
|
{% endif %}
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Foto vom Typenschild</th>
|
|
<td>
|
|
{% if device.device_picture %}
|
|
<img alt="Foto vom Typenschild"
|
|
height="100%"
|
|
width="50%"
|
|
src="/media/{{ device.type_plate_picture }}" />
|
|
{% else %}
|
|
kein Bild
|
|
{% endif %}
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
{% endblock content %}
|