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

{{ object.name }}

Location

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

Interfaces

Add new interface {% for nic in object.interface_set.all %}

iface: {{ nic.iface }}

type: {{ nic.type }}
description: {{ nic.shortdesc }}
IP: {{ nic.ip }}/{{ nic.netmask }}
{% ifnotequal nic.type "eth" %} SSID: {{ nic.ssid }}
Channel: {{ nic.channel }}
Antenna: {{ nic.antenna }}
Polar: {{ nic.polar }}
Mode: {{ nic.mode }}
{% endifnotequal %} EDIT
{% for interlink in nic.link.interface_set.all %} {% ifnotequal interlink nic %} {% endifnotequal %} {% endfor %} {% for omni in nic.omni.all %} {% endfor %} {% endfor %} {% endblock %}