{% for device in network %}
{{ device.id }}
{{ device.description }}
{{ device.location }}
{{ device.ip_address }}
{% for sub_dev in device.sub_devices %}
{{ sub_dev.id }}
{{ sub_dev.description }}
{% endfor %}
{% endfor %}