{% extends "base.html" %} {% load render_table from django_tables2 %} {% load querystring from django_tables2 %} {% block title %} Detalhes da Rede {% endblock %} {% block extra-css %} {% load staticfiles %} {% endblock %} {% block titulo %}
{% endblock %} {% block conteudo1 %}

Endereço: {{ network.address }}

Máscara: /{{ network.mask }}

{% if network.gateway %}

Gateway: {{ network.gateway }}

{% endif %}

Braoadcast: {{ broadcast }}

{% if network.vln %}

VLAN: {{ network.vln }}

{% endif %} {% if network.dhcp == True %}

DHCP:

{% else %}

DHCP:

{% endif %}
{% if network.dhcp != False %}

DHCP Range: {{ network.dhcp_start }} - {{ network.dhcp_end }} ( {{ qdhcp }} )

{% endif %}

IP's fixos disponíveis nesta rede: {{ d }}

{% if network.comments %}

Obs: {{ network.comments|default_if_none:"" }}

{% endif %}



Endereços livres para uso como IP fixo
{% if free %}




{% else %}
{% endif %}
{% if i %}
Endereços IP fixos
{% render_table table 'django_tables2/bootstrap.html' %}
{% endif %}


{% endblock %} {% block extra-js %} {% load staticfiles %} {% endblock %}