{% extends 'base.html' %} {% block content %}
{% csrf_token %}

{% if form.errors %} {% for field in form %} {% for error in field.errors %}
{{field.name}}: {{ error|escape }}
{% endfor %} {% endfor %} {% for error in form.non_field_errors %}
{{ error|escape }}
{% endfor %} {% endif %}

Import Transactions from Bitcoin.de API

You need an API Key with Show permissions, and with access from only this IP: {{my_ip}}

{{ form.api_key }}
{{ form.api_secret }}
{{ form.start_date }}
{% endblock %}