{% extends "exodus_template.html" %} {% block content %}

{{ object.name }}

Location: {{ object.location.description }}
X: {{ object.location.coordinateX }}
Y: {{ object.location.coordinateY }}
Master ip: {{ object.masterip }}

Interfaces

{% for nic in object.nic_set.all %}

iface: {{ nic.iface }}

status: {{ nic.status }}
type: {{ nic.type }}
description: {{ nic.shortdesc }}
{% if nic.ssid %} SSID: {{ nic.ssid }}
Channel: {{ nic.channel }}
Antenna: {{ nic.antenna }}
Polar: {{ nic.polar }}
Mode: {{ nic.mode }}
{% endif %} {% for link in nic.link_set.all %} {% endfor %}

{% endfor %} {% endblock %}