28 lines
1.2 KiB
HTML
28 lines
1.2 KiB
HTML
|
<p>
|
||
|
<form style="width:300px; display:inline-block;" action="" method=post>
|
||
|
<input name="date" type="date" value="{{ date }}">
|
||
|
<input type="submit" value="Set date">
|
||
|
</form>
|
||
|
<form style="width:300px; display:inline-block;" action="" method=post>
|
||
|
<select name="ipversion">
|
||
|
<option value="v4" {% if ipversion == 'v4' %} selected="selected"{% endif %}>v4</option>
|
||
|
<option value="v6" {% if ipversion == 'v6' %} selected="selected"{% endif %}>v6</option>
|
||
|
</select>
|
||
|
<input type="submit" value="Set IP version">
|
||
|
</form>
|
||
|
<form style="width:500px; display:inline-block;" action="" method=post>
|
||
|
<select name="source">
|
||
|
<option value="" {% if not source %} selected="selected"{% endif %}>all</option>
|
||
|
{% for s in sources %}
|
||
|
<option value="{{ s }}" {% if source == s %} selected="selected"{% endif %}>{{ s }}</option>
|
||
|
{% endfor %}
|
||
|
</select>
|
||
|
<input type="submit" value="Set source">
|
||
|
</form>
|
||
|
<form style="width:500px; display:inline-block;" action="{{ url_for('asn_details') }}" method=post>
|
||
|
ASN to search: <input type=number name=asn>
|
||
|
<input type="submit" value="Search">
|
||
|
</form>
|
||
|
<p>
|
||
|
<br/>
|