{% extends 'base.html' %} {% load humanize %} {% load filter %} {% block content %}
Add New Record

Import from Bitcoin.de

{% for transaction in transactions %} {% endfor %}
Date Amount Value Rate Actions
{{ transaction.date_valid }} {{ transaction.crypto_amount|floatformat:3 }} {% if transaction.crypto_fee and transaction.crypto_fee > 0 %}Fee: {{ transaction.crypto_fee|floatformat:3 }}{% endif %} {{ transaction.crypto_currency }} {{ transaction.fiat_amount|formatcurrency }} {% if transaction.fiat_fee and transaction.fiat_fee > 0 %}Fee: {{ transaction.fiat_fee|floatformat:2 }}{% endif %} {{ transaction.fiat_currency }} {% if transaction.transaction_type == 'S' %} {{ transaction.exchange_rate|formatcurrency }} {{ transaction.crypto_currency }}/{{ transaction.fiat_currency }} {% endif %} {% if transaction.transaction_type == 'B' %} {{ transaction.exchange_rate|formatcurrency }} {{ transaction.crypto_currency }}/{{ transaction.fiat_currency }} {% endif %} Edit Delete
{% endblock %}