{% extends "modal.html" %} {% load i18n %} {% block header %} {{ device.description }} {% endblock header %} {% block body %}
{% trans "Warranty Status" %}
{{ device.get_warranty_status_display }}
{% trans "Purchase Date" %}
{{ device.purchased_on|date:"SHORT_DATE_FORMAT"|default:"-" }}, {{ device.purchase_country|default:"-" }}
{% trans "Serial Number" %}
{{ device.sn }}
{% if device.configuration %}
{% trans "Configration" %}
{{ device.configuration }}
{% endif %} {% if device.imei %}
IMEI
{{ device.imei }}
{% trans "Activation Profile" %}
{{ device.initial_activation_policy }}
{% trans "Unlocked" %}
{{ device.unlocked|yesno }}
{% endif %} {% if device.username %}
{% trans "Username" %}
{{ device.username }}
{% endif %} {% if device.password %}
{% trans "Password" %}
{{ device.password }}
{% endif %} {% if device.get_coverage_details %}
{% trans "Details" %}
{{ device.get_coverage_details|join:"
" }}
{% endif %} {% if device.notes %}
{% trans "Notes" %}
{{ device.notes }}
{% endif %}
{% endblock body %}