{% extends 'generic/object_list.html' %}
{% load render_table from django_tables2 %}
{% block content %}
| Short Name |
{{ object.short_name }} |
| Full Name |
{{ object.full_name }} |
{% if object.description %}
| Description |
{{ object.description|linebreaksbr }} |
{% endif %}
{% if object.isd_ases.exists %}
| ISD-AS |
Description |
Appliances |
{% for isdas in object.isd_ases.all %}
| {{ isdas.isd_as }} |
{{ isdas.description|default:"-" }} |
{{ isdas.appliances_display|default:"-" }} |
{% endfor %}
{% endif %}
{% endblock %}