{% load i18n %}
{{ device.description }}

{{ device.description }}

{% trans "Warranty Status" %}
{{ device.get_warranty_status_display }}
{% trans "Purchase Date" %}
{{ device.purchased_on|date:"SHORT_DATE_FORMAT"|default:"-" }}, {{ device.get_purchase_country|default:"-" }}
{% trans "Serial Number" %}
{{ device.sn|default:"-" }}
{% if device.configuration %}
{% trans "Configration" %}
{{ device.configuration }}
{% endif %} {% if device.username %}
{% trans "Username" %}
{{ device.username }}
{% endif %} {% if device.password %}
{% trans "Password" %}
{{ device.password }}
{% endif %} {% if device.imei %}
{% trans "IMEI" %}
{{ device.imei }}
{% trans "Applied Activation Policy" %}
{{ device.applied_activation_policy }}
{% trans "Initial Activation Policy" %}
{{ device.initial_activation_policy }}
{% trans "Find My iPhone" %}
{{ device.get_fmip_status }}
{% trans "Unlocked" %}
{{ device.unlocked }}
{% endif %} {% if device.notes %}
{% trans "Notes" %}
{{ device.notes }}
{% endif %}
{% for t in device.tags.all %} {{ t.tag }} {% endfor %}