Skip to content

Instantly share code, notes, and snippets.

@dsuch
Last active December 18, 2015 13:29
Show Gist options
  • Save dsuch/5790223 to your computer and use it in GitHub Desktop.
Save dsuch/5790223 to your computer and use it in GitHub Desktop.
<form action="." method="get">
From EUR to
<input type="text" name="to" value="{{ to }}" />
<input type="submit" value="Get exchange rates" />
</form>
<table id="rates">
<tr>
<th>Provider</th>
<th>Rate</th>
<th>Timestamp (UTC)</th>
</tr>
{% for elem in data %}
<tr>
<td>{{ elem.provider }}</td>
<td>{{ elem.rate }}</td>
<td>{{ elem.ts }}</td>
</tr>
{% endfor %}
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment