You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
{% include 'header.html' %}
|
|
|
|
|
|
|
|
<h3>RPC Console</h3>
|
|
|
|
{% for m in messages %}
|
|
|
|
<p>{{ m }}</p>
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
<form method="post">
|
|
|
|
<p>
|
|
|
|
<select name="coin_type"><option value="-1"{% if coin_type==-1 %} selected{% endif %}>-- Select Coin --</option>
|
|
|
|
{% for c in coins %}
|
|
|
|
<option value="{{ c[0] }}"{% if coin_type==c[0] %} selected{% endif %}>{{ c[1] }}</option>
|
|
|
|
{% endfor %}
|
|
|
|
</select><br/>
|
|
|
|
<input type="text" name="cmd"><br/>
|
|
|
|
<input type="submit" value="Submit">
|
|
|
|
<input type="hidden" name="formid" value="{{ form_id }}">
|
|
|
|
</p>
|
|
|
|
</form>
|
|
|
|
|
|
|
|
{% if result %}
|
|
|
|
<textarea id="story" name="story" rows="40" cols="160">
|
|
|
|
{{ result }}
|
|
|
|
</textarea>
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
<p><a href="/">home</a></p>
|
|
|
|
</body></html>
|