aboutsummaryrefslogtreecommitdiffstats
path: root/python/Dawn/templates
diff options
context:
space:
mode:
Diffstat (limited to 'python/Dawn/templates')
-rw-r--r--python/Dawn/templates/wire_entry.html14
1 files changed, 12 insertions, 2 deletions
diff --git a/python/Dawn/templates/wire_entry.html b/python/Dawn/templates/wire_entry.html
index 84176890..1e69ccd0 100644
--- a/python/Dawn/templates/wire_entry.html
+++ b/python/Dawn/templates/wire_entry.html
@@ -90,9 +90,9 @@
</label>
<div class="col-md-6">
<select class="form-control" id="folder" name="folder">
- <option value="None">{{strat}}</option>
+ <option value="None"></option>
{% for strat in strategies %}
- <option value="{{strat[0]}}">{{strat[1]}}</option>
+ <option value="{{strat}}">{{strat}}</option>
{% endfor %}
</select>
</div>
@@ -121,6 +121,16 @@
<div class="col-md-6">
<input class="form-control" id="amount" name="amount" value="" type="text">
</div>
+ </div>
+ <div class="form-group ">
+ <label class="control-label col-md-4" for="currency">currency</label>
+ <div class="col-md-6">
+ <select class="form-control" id="currency" name="currency">
+ {% for curr in currencies %}
+ <option value="{{curr}}">{{curr}}</option>
+ {% endfor %}
+ </select>
+ </div>
<div class="col-md-2">
<input id="btn" type="button" class="btn" value="+">
</div>