Merge pull request #22 from tpokorra/TP-202103-formatcurrencytransactions

also format the exchange rates properly
This commit was merged in pull request #22.
This commit is contained in:
2021-03-05 20:37:20 +01:00
committed by GitHub
3 changed files with 14 additions and 3 deletions
+4 -3
View File
@@ -1,5 +1,6 @@
{% extends 'base.html' %}
{% load humanize %}
{% load filter %}
{% block content %}
<div class="form-box">
@@ -22,13 +23,13 @@
<tr>
<td>{{ transaction.date_valid }}</td>
<td>{{ transaction.amount_before_fee|floatformat:3 }} {{ transaction.crypto_currency }}</td>
<td>{{ transaction.amount|floatformat:2 }} {{ transaction.fiat_currency }}</td>
<td>{{ transaction.amount|formatcurrency }} {{ transaction.fiat_currency }}</td>
<td>{% if transaction.amount < 0 %}
{{ transaction.exchange_rate|floatformat:0 }} {{ transaction.crypto_currency }}/{{ transaction.fiat_currency }}
{{ transaction.exchange_rate|formatcurrency }} {{ transaction.crypto_currency }}/{{ transaction.fiat_currency }}
{% endif %}
</td>
<td>{% if transaction.amount > 0 %}
{{ transaction.exchange_rate|floatformat:0 }} {{ transaction.crypto_currency }}/{{ transaction.fiat_currency }}
{{ transaction.exchange_rate|formatcurrency }} {{ transaction.crypto_currency }}/{{ transaction.fiat_currency }}
{% endif %}
</td>
<td>
+10
View File
@@ -0,0 +1,10 @@
from django import template
register = template.Library()
@register.filter
def formatcurrency(value):
if value > 100:
return "%0.0f" % (value,)
return "%0.2f" % (value,)