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

@@ -23,7 +23,7 @@
<tr class="padded_row"><td class="bold">Coin From</td><td>
<select name="coin_from_" disabled><option value="-1">-- Select Coin --</option>
{% for c in coins %}
{% for c in coins_from %}
<option{% if data.coin_from==c[0] %} selected{% endif %} value="{{ c[0] }}">{{ c[1] }}</option>
{% endfor %}
</select>