{% extends 'generic/object.html' %}
{% load i18n %}
{% block content %}
| {% trans "Provider" %} |
{{ object.provider|linkify }} |
| {% trans "Account" %} |
{{ object.provider_account|linkify|placeholder }} |
| {% trans "Integrated Circuit Card Identifier" %} |
{{ object.iccid }} |
{% if object.description %}
| {% trans "Description" %} |
{{ object.description }} |
{% endif %}
{% if object.tenant %}
| {% trans "Tenant" %} |
{% if object.tenant.group %}
{{ object.tenant.group|linkify }} /
{% endif %}
{{ object.tenant|linkify|placeholder }}
|
{% endif %}
{% if object.device %}
| {% trans "Device" %} |
{{ object.device|linkify }} |
{% endif %}
| {% 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 "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 %}