mirror of
https://github.com/lalanza808/monero.fail.git
synced 2025-09-27 16:40:51 -04:00
keep filters in place
This commit is contained in:
parent
0d12e4d30a
commit
950fbfcec8
1 changed files with 7 additions and 7 deletions
|
@ -36,28 +36,28 @@
|
|||
<span>
|
||||
<label for="chainSelect">Chain:</label>
|
||||
<select name="chain" id="chainSelect">
|
||||
<option value="monero" autofocus>Monero</option>
|
||||
<option value="wownero">Wownero</option>
|
||||
<option value="monero" {% if request.args.get('chain') == 'monero' %}selected{% endif %}>Monero</option>
|
||||
<option value="wownero" {% if request.args.get('chain') == 'wownero' %}selected{% endif %}>Wownero</option>
|
||||
</select>
|
||||
</span>
|
||||
|
||||
<span>
|
||||
<label for="networkSelect">Network:</label>
|
||||
<select name="network" id="networkSelect">
|
||||
<option value="mainnet" autofocus>Mainnet</option>
|
||||
<option value="testnet">Testnet</option>
|
||||
<option value="stagenet">Stagenet</option>
|
||||
<option value="mainnet" {% if request.args.get('network') == 'mainnet' %}selected{% endif %}>Mainnet</option>
|
||||
<option value="testnet" {% if request.args.get('network') == 'testnet' %}selected{% endif %}>Testnet</option>
|
||||
<option value="stagenet" {% if request.args.get('network') == 'stagenet' %}selected{% endif %}>Stagenet</option>
|
||||
</select>
|
||||
</span>
|
||||
|
||||
<span>
|
||||
<label for="cors">Web (CORS):</label>
|
||||
<input type="checkbox" name="cors" id="cors">
|
||||
<input type="checkbox" name="cors" id="cors" {% if request.args.get('cors') == 'on' %}checked{% endif %}>
|
||||
</span>
|
||||
|
||||
<span>
|
||||
<label for="onion">Onion:</label>
|
||||
<input type="checkbox" name="onion" id="onion">
|
||||
<input type="checkbox" name="onion" id="onion" {% if request.args.get('onion') == 'on' %}checked{% endif %}>
|
||||
</span>
|
||||
|
||||
<span>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue