{% extends 'generic/object.html' %} {% load i18n %} {% block content %}
{% trans "SIM Card" %}
{% if object.description %} {% endif %} {% if object.tenant %} {% endif %} {% if object.device %} {% endif %}
{% trans "Provider" %} {{ object.provider|linkify }}
{% trans "Account" %} {{ object.provider_account|linkify|placeholder }}
{% trans "Integrated Circuit Card Identifier" %} {{ object.iccid }}
{% trans "Description" %} {{ object.description }}
{% trans "Tenant" %} {% if object.tenant.group %} {{ object.tenant.group|linkify }} / {% endif %} {{ object.tenant|linkify|placeholder }}
{% trans "Device" %} {{ object.device|linkify }}
{% trans "Mobile Station International Subscriber Directory Number" %} {{ object.msisdn }}
{% trans "PIN" %} {{ object.pin }}
{% trans "PUK" %} {{ object.puk }}
{% trans "Volume in GBs" %} {{ object.numeric_value }}
{% include 'inc/panels/custom_fields.html' %}
{% include 'inc/panels/tags.html' %}
{% if sim_private %}
{% trans "SIM Card Private" %}
{% trans "Authentication Key" %} {{ sim_private.ki }}
{% trans "Operator Code" %} {{ sim_private.opc }}
{% trans "Mapped IMEI" %} {{ sim_private.mapped_imei }}
{% trans "Admin Key" %} {{ sim_private.admin_key }}
{% endif %}
{% endblock %}