nodo.html 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. {% extends "base.html" %}
  2. {% block content %}
  3. <h3>nodo:
  4. {% if is_active == 1 %}
  5. (Activo)
  6. {% else %}
  7. (Proyectado)
  8. {% endif %}
  9. "{{ nombre }}"
  10. </h3>
  11. <div>
  12. ..
  13. <p>
  14. <a href="/descargas/{{ url_descarga }}" class="class=btn btn-lg btn-success">
  15. descargar Firmware
  16. </a>
  17. </p>
  18. <span style="color:#eee2e1">..</span>
  19. </div>
  20. {% if is_active == 1 %}
  21. <div class="caja_nodo_activo">
  22. {% else %}
  23. <div class="caja_nodo_proyectado">
  24. {% endif %}
  25. <div class="row">
  26. <div class="col-md-5">
  27. Nombre: <b>{{ nombre }}</b>
  28. <br>
  29. Bloque IPV4: <code>{{ bloque_ipv4 }}</code>
  30. <br>
  31. Dirección RED: <code>{{ ipv4_network_addr }}</code>
  32. <br>
  33. Máscara RED: <code>
  34. {{ ipv4_cidr }}
  35. {% if ipv4_cidr == 24 %}
  36. 255.255.255.0
  37. {% elif ipv4_cidr == 25 %}
  38. 255.255.255.128
  39. {% elif ipv4_cidr == 26 %}
  40. 255.255.255.192
  41. {% elif ipv4_cidr == 27 %}
  42. 255.255.255.224
  43. {% elif ipv4_cidr == 28 %}
  44. 255.255.255.240
  45. {% endif %}
  46. </code>
  47. <br>
  48. Bloque IPV6: <code>{{ bloque_ipv6 }}</code>
  49. </div>
  50. <div class="col-md-7">
  51. <b>Descripción:</b>
  52. <div>
  53. {% for line in descripcion.splitlines() %}
  54. {{ line }}
  55. <br>
  56. {% endfor %}
  57. </div>
  58. <hr width="54%">
  59. <b>Fecha de registro:</b> {{ fecha_creacion }}
  60. <br>
  61. <b>Responsable:</b> {{ nombres }} {{ apellidos }}
  62. <br>
  63. <b>EMAIL:</b> {{ email }}
  64. <br>
  65. <b>teléfono registrado:</b> {{ telf }}
  66. </div>
  67. </div>
  68. <h4>Detalles de Ubicación proporcionada</h4>
  69. La Ubicación de este nodo es pública:
  70. {% if ubicacion[9] == 1 %}
  71. <span class="label label-info">SI</span>
  72. {% else %}
  73. <span class="label label-warning">NO</span>
  74. {% endif %}
  75. <a href="#ayuda_ubicacion">
  76. <img src="../static/imgs/pregunta.png" width="24" height="24"
  77. title="¿Qué es esto?">
  78. </a>
  79. <br><br>
  80. <div class="row">
  81. <div class="col-md-2">
  82. <b>ciudad, localidad:</b> {{ ubicacion[1] }}
  83. <p>
  84. <b>Zona o Barrio:</b> {{ ubicacion[2] }}
  85. </p>
  86. <p>
  87. <b>Dirección:</b> {{ ubicacion[3] }}
  88. </p>
  89. <br>
  90. </div>
  91. <div class="col-md-10">
  92. <a href="{{ ubicacion[4] }}">MAPA</a>
  93. <br>
  94. <iframe src="{{ ubicacion[5] }}" width="525" height="450" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" style="border: 1px solid black""> </iframe>
  95. <br>
  96. <b>Elevación aproximada:</b>
  97. {{ ubicacion[6] }}
  98. <br>
  99. <b>latitud, longitud:</b> {{ ubicacion[7] }}, {{ ubicacion[8] }}
  100. </div>
  101. </div>
  102. </div>
  103. <h4>NOTAS</h4>
  104. <p id="ayuda_ubicacion">
  105. Cuando la Ubicación <span class="label label-info">SI</span> es pública, culaquiera podrá ver los datos de Ubicación que se proporcionen, <b>esto ayuda mucho</b> a otros a planificar enlaces con tu nodo. Cuando <span class="label label-warning">NO</span> es pública, no se mostrará ningún dato de Ubicación a los visitantes.
  106. </p>
  107. {% endblock %}