ui: New offer, when 'Lock Rate' is set rate must update if it's empty.

Remove invalid coins from coin from list.
This commit is contained in:
tecnovert
2021-12-11 22:11:42 +02:00
parent 001e9976aa
commit 81e9924654
5 changed files with 20 additions and 9 deletions

View File

@@ -12,7 +12,7 @@
<table>
<tr><td>Coin From</td><td>
<select name="coin_from"><option value="-1"{% if filters.coin_from==-1 %} selected{% endif %}>-- Any Coin --</option>
{% for c in coins %}
{% for c in coins_from %}
<option value="{{ c[0] }}"{% if filters.coin_from==c[0] %} selected{% endif %}>{{ c[1] }}</option>
{% endfor %}
</select>