34 lines
972 B
HTML
34 lines
972 B
HTML
|
{% extends 'base.html' %}
|
||
|
{% load static %}
|
||
|
|
||
|
{% block extra_css %}
|
||
|
<link rel="stylesheet" href="{% static 'jquery-ui/jquery-ui.min.css' %}" />
|
||
|
{% endblock extra_css %}
|
||
|
{% block extra_scripts %}
|
||
|
<script src="{% static 'js/viewmap.js' %}"> </script>
|
||
|
<script src="{% static 'jquery-ui/jquery-ui.min.js' %}"> </script>
|
||
|
{% endblock extra_scripts %}
|
||
|
|
||
|
{% block content %}
|
||
|
<div id="dialog"></div>
|
||
|
<div id="filters">
|
||
|
<header><h3>Filtra</h3></header>
|
||
|
<form method="GET">
|
||
|
|
||
|
<div class="form-field-line">
|
||
|
<label for="tiporadio">Osservazione fatta con</label>
|
||
|
<select name="tiporadio" >
|
||
|
<option value="NA" disabled selected="selected">//</option>
|
||
|
{% for tr in tipiradio %}
|
||
|
<option value="{{tr.tid}}"><strong>{{tr.nome}}</strong> - {{tr.descrizione|default:'' }}</option>
|
||
|
{% endfor %}
|
||
|
</select>
|
||
|
</div>
|
||
|
|
||
|
|
||
|
<button id="search">Filtra</button>
|
||
|
|
||
|
</form>
|
||
|
</div>
|
||
|
{% endblock content %}
|