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