{{ _('devices') }}
| {{ _('device_serial') }} | {{ _('device_name') }} | {{ _('firmware') }} | {{ _('device_ip') }} | {{ _('connection_status') }} | {{ current_language == 'tr' and 'Kripto Haberleşme' or 'Crypto Communication' }} | {{ current_language == 'tr' and 'Son Yanıt' or 'Last Response' }} | {{ _('actions') }} |
|---|---|---|---|---|---|---|---|
{{ cihaz.seri_no if cihaz.seri_no else cihaz.id }}
|
{{ cihaz.ad if cihaz.ad else (cihaz.device_name if cihaz.device_name else '') }} | {{ cihaz.firmware_version if cihaz.firmware_version else 'N/A' }} |
{% if cihaz.is_connected and cihaz.id in connected_device_ips %}
{{ connected_device_ips[cihaz.id] }}
({{ _('connected') }})
{% elif cihaz.ip_adresi or cihaz.ip_address %}
{{ cihaz.ip_adresi if cihaz.ip_adresi else cihaz.ip_address }}
{% elif cihaz.device_id in connected_device_ips %}
{{ connected_device_ips[cihaz.device_id] }}
({{ _('connected') }})
{% else %}
-
{% endif %}
|
{% if cihaz.is_connected %}{{ _('connected') }}{% else %}{{ _('disconnected') }}{% endif %}
|
{% if cihaz.last_response_time %}
{{ cihaz.last_response_time }}
{% if cihaz.response_age_minutes is defined %}
{% if cihaz.response_age_minutes < 1 %}
{{ current_language == 'tr' and 'Az önce' or 'Just now' }}
{% elif cihaz.response_age_minutes < 60 %}
{{ cihaz.response_age_minutes }} {{ current_language == 'tr' and 'dk önce' or 'min ago' }}
{% else %}
{{ (cihaz.response_age_minutes / 60)|round|int }} {{ current_language == 'tr' and 'saat önce' or 'hr ago' }}
{% endif %}
{% endif %}
{% else %}
{{ current_language == 'tr' and 'Bilinmiyor' or 'Unknown' }}
{% endif %}
|