{% extends 'base.html.twig' %} {% block title %}Datalogger-Verwaltung{% endblock %} {% block content %}
Noch keine Datalogger angelegt.
Ersten Datalogger anlegen| Name | Standort | API-URL | Status | Letztes Signal | QR Schadenmeldung | Aktionen |
|---|---|---|---|---|---|---|
|
{{ dl.name }}
{% if dl.description %}
{{ dl.description }}
{% endif %}
|
{{ dl.location ?? '–' }} | {% set apiUrlFull = (dl.apiBaseUrl starts with 'http') ? dl.apiBaseUrl : ('http://' ~ dl.apiBaseUrl) %}{{ dl.apiBaseUrl|slice(0, 40) }}{% if dl.apiBaseUrl|length > 40 %}…{% endif %} | {% if dl.active %} Aktiv {% else %} Inaktiv {% endif %} | {{ dl.lastSeen ? dl.lastSeen|date('d.m.Y H:i') : '–' }} | {% if dl.qrPublicToken %} Formular QR {% else %} wird erzeugt {% endif %} | Dashboard Bearbeiten |