{% extends 'generic/object.html' %} {% load i18n %} {% block content %}
{% trans "Phonenumber" %}
{% if object.description %} {% endif %} {% if object.tenant %} {% endif %} {% if object.primary_vm %} {% endif %} {% if object.primary_device %} {% endif %} {% if object.secondary_vm %} {% endif %} {% if object.secondary_device %} {% endif %} {% if object.primary_voice_circuit %} {% endif %} {% if object.primary_virtual_circuit %} {% endif %} {% if object.secondary_voice_circuit %} {% endif %} {% if object.secondary_virtual_circuit %} {% endif %}
{% trans "Number" %} {{ object.number }}
{% trans "Description" %} {{ object.description }}
{% trans "Tenant" %} {% if object.tenant.group %} {{ object.tenant.group|linkify }} / {% endif %} {{ object.tenant|linkify|placeholder }}
{% trans "Incomming dialpeer" %} {{ object.incoming_dialpeer }}
{% trans "Outgoining dialpeer" %} {{ object.outgoining_dialpeer }}
{% trans "Country code" %} {{ object.get_country_code_display }}
{% trans "Status" %} {{ object.get_status_display }}
{% trans "Type" %} {{ object.get_type_display }}
{% trans "Region" %} {{ object.region|linkify }}
{% trans "Primary Vm" %} {{ object.primary_vm|linkify }}
{% trans "Primary Device" %} {{ object.primary_device|linkify }}
{% trans "Secondary Vm" %} {{ object.secondary_vm|linkify }}
{% trans "Secondary Device" %} {{ object.secondary_device|linkify }}
{% trans "Primary Voice Circuit" %} {{ object.primary_voice_circuit|linkify }}
{% trans "Primary Virtual Circuit" %} {{ object.primary_virtual_circuit|linkify }}
{% trans "Secondary Voice Circuit" %} {{ object.secondary_voice_circuit|linkify }}
{% trans "Secondary Virtual Circuit" %} {{ object.secondary_virtual_circuit|linkify }}
{% include 'inc/panels/custom_fields.html' %}
{% include 'inc/panels/tags.html' %}
{% endblock %}