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

Import from Bitcoin.de

{% for transaction in transactions %} {% if transaction.description and transaction.description != '' %} {% endif %} {% endfor %}
Date Amount Value Rate Actions
{{ transaction.description }}:
{{ transaction.date_valid }} {{ transaction.crypto_total|floatformat:3 }} {{ transaction.crypto_currency }} {{ transaction.fiat_total|formatcurrency }} {{ 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 %}