{% extends 'generic/object.html' %} {% load helpers %} {% load plugins %} {% load i18n %} {% block content %}
{% trans "WDM Circuit" %}
{% trans "Name" %} {{ object.name }}
{% trans "Status" %} {{ object.get_status_display }}
{% trans "Wavelength Paths" %} {% for path in object.wavelength_paths.all %} {{ path }}{% if not forloop.last %}, {% endif %} {% empty %} — {% endfor %}
{% trans "Tenant" %} {% if object.tenant %}{{ object.tenant|linkify }}{% else %}—{% endif %}
{% if object.description %}
{% trans "Description" %}
{{ object.description|markdown }}
{% endif %} {% include 'inc/panels/comments.html' %} {% include 'inc/panels/tags.html' %} {% include 'inc/panels/custom_fields.html' %}
{% plugin_full_width_page object %} {% endblock %}