{% extends 'generic/object.html' %}
{% load buttons %}
{% load custom_links %}
{% load helpers %}
{% load plugins %}
{% load render_table from django_tables2 %}
{% block breadcrumbs %}
Peer ASNs
{% endblock %}
{% block content %}
| ASN |
{% if object.asn %}
AS{{ object.asn.asn }}
{% if object.asn.description %}
- {{ object.asn.description }}
{% endif %}
{% else %}
{{ ''|placeholder }}
{% endif %}
|
| Affiliated |
{% checkmark object.affiliated %} |
| IRR AS-SET |
{{ object.irr_as_set|placeholder }} |
| IPv4 Max Prefixes |
{{ object.ipv4_max_prefixes|placeholder }} |
| IPv6 Max Prefixes |
{{ object.ipv6_max_prefixes|placeholder }} |
| PeeringDB ID |
{% if object.peeringdb_id %}
{{ object.peeringdb_id }}
{% else %}
{{ ''|placeholder }}
{% endif %}
|
| Last Sync |
{{ object.peeringdb_last_sync|placeholder }} |
{% include 'inc/panels/custom_fields.html' %}
{% include 'inc/panels/tags.html' %}
{% include 'inc/panels/comments.html' %}
{% plugin_left_page object %}
{% plugin_right_page object %}
{% render_table sessions_table 'inc/table.html' %}
{% plugin_full_width_page object %}
{% endblock %}