{% extends "exodus-template.html" %} {% block content %} Node List

{{ node.name }}

Location

Description: {{ node.location.description }}
Longitude: {{ node.location.longitude }}
Latitude: {{ node.location.latitude }}
Master ip: {{ node.masterip }}
EDIT DELETE

Interfaces

Add new interface

{% for nic in node.interface_set.all %}

iface: {{ nic.iface }}

Description: {{ nic.shortdesc }}
IP: {{ nic.ip }}/{{ nic.netmask }}
Type: {% ifequal nic nic.link %}Master{% else %}Slave {% endifequal %}
{% ifnotequal nic.type "eth" %} SSID: {{ nic.ssid }}
Channel: {{ nic.channel }}
Antenna: {{ nic.antenna }}
Polar: {{ nic.get_polar_display }}
Mode: {{ nic.get_mode_display }}
{% endifnotequal %} EDIT DELETE
{% for interlink in nic.link.interface_set.all %} {% ifnotequal interlink nic %} {% endifnotequal %} {% endfor %}

{% endfor %} {% endblock %}