BGP-Ranking/website/web/templates/top_forms.html

41 lines
2.4 KiB
HTML
Raw Normal View History

2018-06-01 17:13:56 +02:00
<p>
2018-08-01 18:02:34 +02:00
<form class="form-group" style="width:250px; display:inline-block;" action="" method=post>
2018-07-31 11:52:24 +02:00
<input name="date" class="form-control my-1 mr-sm-2" type="date" value="{{ date }}">
<button type="submit" class="btn btn-primary my-1">Set date</button>
2018-06-01 17:13:56 +02:00
</form>
2018-08-01 18:02:34 +02:00
<form class="form-group" style="width:270px; display:inline-block;" action="" method=post>
<select name="ipversion" class="selectpicker">
2018-06-01 17:13:56 +02:00
<option value="v4" {% if ipversion == 'v4' %} selected="selected"{% endif %}>v4</option>
<option value="v6" {% if ipversion == 'v6' %} selected="selected"{% endif %}>v6</option>
</select>
2018-07-31 11:52:24 +02:00
<button type="submit" class="btn btn-primary my-1">IP version</button>
2018-06-01 17:13:56 +02:00
</form>
2018-08-01 18:02:34 +02:00
<form class="form-group" style="width:280px; display:inline-block;" action="" method=post>
<select name="source" class="selectpicker" data-live-search="true" multiple>
<option value="_all" data-tokens="all" {% if not source %} selected="selected"{% endif %}>all</option>
2018-06-01 17:13:56 +02:00
{% for s in sources %}
<option value="{{ s }}" data-tokens="{{ s }}" {% if s in source %} selected="selected"{% endif %}>{{ s }}</option>
2018-06-01 17:13:56 +02:00
{% endfor %}
</select>
2018-07-31 11:52:24 +02:00
<input type="submit" class="btn btn-primary my-1"value="Set source">
2018-06-01 17:13:56 +02:00
</form>
2018-08-01 18:02:34 +02:00
<form class="form-group" style="width:270px; display:inline-block;" action="{{ url_for('asn_details') }}" method=post>
2018-07-31 11:52:24 +02:00
<input type=number name=asn class="form-control my-1 mr-sm-2">
<button type="submit" class="btn btn-primary my-1">Search ASN</button>
2018-06-01 17:13:56 +02:00
</form>
2018-08-01 18:02:34 +02:00
<form class="form-group"style="width:300px; display:inline-block;" action="{{ url_for('country') }}" method=post>
<select name="country" class="selectpicker" data-live-search="true" multiple>
<option value="_all" data-tokens="all" {% if not country %} selected="selected"{% endif %}>all</option>
2018-07-30 14:40:42 +02:00
{% for cc, name in countries %}
<option value="{{ cc }}" data-tokens="{{ cc }} {{ name }}" {% if cc in country %} selected="selected"{% endif %}>{{ name }}</option>
2018-07-30 14:40:42 +02:00
{% endfor %}
</select>
2018-07-31 11:52:24 +02:00
<input type="submit" class="btn btn-primary my-1"value="Set country">
2018-07-30 14:40:42 +02:00
</form>
<form class="form-group" style="width:270px; display:inline-block;" action="{{ url_for('ipasn') }}" method=post>
<input type=string name=ip class="form-control my-1 mr-sm-2">
<button type="submit" class="btn btn-primary my-1">Search an IP</button>
</form>
2018-06-01 17:13:56 +02:00
<p>
<br/>