index.html 981 B

123456789101112131415161718192021222324252627282930313233
  1. {% extends 'base.html' %}
  2. {% load static %}
  3. {% block extra_css %}
  4. <link rel="stylesheet" href="{% static 'jquery-ui/jquery-ui.min.css' %}" />
  5. {% endblock extra_css %}
  6. {% block extra_scripts %}
  7. <script src="{% static 'js/viewmap.js' %}"> </script>
  8. <script src="{% static 'jquery-ui/jquery-ui.min.js' %}"> </script>
  9. {% endblock extra_scripts %}
  10. {% block content %}
  11. <div id="dialog"></div>
  12. <div id="filters">
  13. <header><h3>Filtra</h3></header>
  14. <form method="GET">
  15. <div class="form-field-line">
  16. <label for="tipo_radio__id">Osservazione fatta con</label>
  17. <select name="tipo_radio__id" >
  18. <option value="NA" disabled selected="selected">//</option>
  19. {% for tr in tipiradio %}
  20. <option value="{{tr.id}}"><strong>{{tr.nome}}</strong> - {{tr.descrizione|default:'' }}</option>
  21. {% endfor %}
  22. </select>
  23. </div>
  24. <button id="search">Filtra</button>
  25. </form>
  26. </div>
  27. {% endblock content %}