This repository has been archived on 2026-03-30. You can view files and clone it, but cannot push or open issues or pull requests.
RepApp/rc_hip/repapp/templates/repapp/device_view.html

18 lines
414 B
HTML

{% extends "repapp/base.html" %}
{% block title %}
- {{ device.device }}
{% endblock title %}
{% block content %}
<h1 class="mt-2">Gerät: {{ device.device }}</h1>
<hr class="mt-0 mb-4">
<p>Fehler:</p>
<p>{{ device.error }}</p>
<p>
Folgetermin:
{% if device.follow_up %}
Ja
{% else %}
Nein
{% endif %}
</p>
{% endblock content %}