{% extends "base.html" %} {% block title %}Subir Circuito{% endblock %} {% block head %} {{ super() }} {% endblock %} {% block content %}
{% for row in range(16) %}
{% for col in range(16) -%} {% set ip = row*16 + col %} {% set unusable = ip == 0 or ip == 255 %} {% set usable = not unusable %}
{% if 99 <= ip <= 103 or ip == 96%} Andy {% elif 216 <= ip <= 239 %} DHCP {% endif %}
{% if usable %} {% if ip == 14 or ip == 99 %} {% endif %} .{{ row*16 + col }} {% endif %}
{%- endfor %}
{% endfor %}
{% endblock %}