{% extends "shared/frontend/base.html" %} {% block title %}{{ hardware.brand }} {{ hardware.model }} - Hardware - BMC Hub{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
Tilbage til hardware
ID: {{ hardware.id }}
Hardware: {{ hardware.brand or 'Unknown' }} {{ hardware.model or '' }}
{% if hardware.serial_number %}
S/N: {{ hardware.serial_number }}
{% endif %} {% set current_owner = ownership[0] if ownership else None %} {% if current_owner and not current_owner.end_date %}
Ejer: {{ current_owner.customer_name or current_owner.owner_type|title }}
{% endif %} {% set current_loc = locations[0] if locations else None %} {% if current_loc and not current_loc.end_date %}
Lokation: {{ current_loc.location_name }}
{% endif %}
Status: {{ hardware.status|replace('_', ' ')|title }}
Stamdata
Type {% if hardware.asset_type == 'pc' %}🖥️ PC {% elif hardware.asset_type == 'laptop' %}💻 Laptop {% elif hardware.asset_type == 'printer' %}🖨️ Printer {% elif hardware.asset_type == 'skærm' %}🖥️ Skærm {% elif hardware.asset_type == 'telefon' %}📱 Telefon {% elif hardware.asset_type == 'server' %}🗄️ Server {% elif hardware.asset_type == 'netværk' %}🌐 Netværk {% else %}📦 {{ hardware.asset_type|title }} {% endif %}
Mærke/Model {{ hardware.brand or '-' }} / {{ hardware.model or '-' }}
{% if hardware.internal_asset_id %}
Internt Asset ID {{ hardware.internal_asset_id }}
{% endif %} {% if hardware.customer_asset_id %}
Kunde Asset ID {{ hardware.customer_asset_id }}
{% endif %} {% if hardware.warranty_until %}
Garanti til {{ hardware.warranty_until }}
{% endif %} {% if hardware.end_of_life %}
End of Life {{ hardware.end_of_life }}
{% endif %}
{% set anydesk_url = hardware.anydesk_id and ('anydesk://' ~ hardware.anydesk_id) %}
Remote Access
Ændre
AnyDesk ID {% if anydesk_url %} {{ hardware.anydesk_id }} {% else %} - {% endif %}
Handling {% if anydesk_url %} Connect AnyDesk {% else %} Ingen link {% endif %}
Lokation
{% if current_loc and not current_loc.end_date %}
{{ current_loc.location_name }}

Siden: {{ current_loc.start_date }}

{% if current_loc.notes %}
"{{ current_loc.notes }}"
{% endif %}
{% else %}

Ingen aktiv lokation

{% endif %}
Ejer
{% if current_owner and not current_owner.end_date %}
{{ current_owner.customer_name or current_owner.owner_type|title }}

Siden: {{ current_owner.start_date }}

{% else %}

Ingen aktiv ejer

{% endif %}
Skift Lokation
Tilføj Bilag
Seneste Sager
{% if cases and cases|length > 0 %} {% for case in cases[:5] %}
{{ case.titel }}
{{ case.status }}
{{ case.created_at.strftime('%Y-%m-%d') if case.created_at else '' }}
{% endfor %} {% if cases|length > 5 %} {% endif %} {% else %}
Ingen sager tilknyttet
{% endif %}
Lokations Historik
{% if locations %} {% for loc in locations %}
{{ loc.location_name or 'Ukendt' }}
{{ loc.start_date }} {% if loc.end_date %} - {{ loc.end_date }}{% else %} Nuværende{% endif %}
{% if loc.notes %}
"{{ loc.notes }}"
{% endif %}
{% endfor %} {% else %}

Ingen historik.

{% endif %}
Ejerskabs Historik
{% if ownership %} {% for own in ownership %}
{{ own.customer_name or own.owner_type }}
{{ own.start_date }} {% if own.end_date %} - {{ own.end_date }}{% else %} Nuværende{% endif %}
{% if own.notes %}
"{{ own.notes }}"
{% endif %}
{% endfor %} {% else %}

Ingen historik.

{% endif %}
{% if attachments %} {% for att in attachments %}
📎
{{ att.file_name }}
{{ att.uploaded_at }}
{% endfor %} {% else %}

Ingen filer vedhæftet

{% endif %}
Noter
{% if hardware.notes %}
{{ hardware.notes }}
{% else %} Ingen noter tilføjet... {% endif %}
{% endblock %} {% block extra_js %} {% endblock %}