-
{{ transaction.date|custom_date:request.user }} • {{ transaction.reference_date|date:"b/Y" }}
+
{{ transaction.date|date:"SHORT_DATE_FORMAT" }} • {{ transaction.reference_date|date:"b/Y" }}
diff --git a/app/templates/dca/fragments/strategy/details.html b/app/templates/dca/fragments/strategy/details.html
index 3e2a6dd..0db0e7c 100644
--- a/app/templates/dca/fragments/strategy/details.html
+++ b/app/templates/dca/fragments/strategy/details.html
@@ -1,4 +1,3 @@
-{% load date %}
{% load currency_display %}
{% load i18n %}
@@ -17,7 +16,7 @@
:prefix="strategy.payment_currency.prefix"
:suffix="strategy.payment_currency.suffix"
:decimal_places="strategy.payment_currency.decimal_places">
- • {{ strategy.current_price.1|custom_date:request.user }}
+ • {{ strategy.current_price.1|date:"SHORT_DATETIME_FORMAT" }}
{% else %}
{% trans "No exchange rate available" %}
@@ -84,7 +83,7 @@
_="install prompt_swal">
-
{{ entry.date|custom_date:request.user }} |
+
{{ entry.date|date:"SHORT_DATE_FORMAT" }} |
@@ -40,7 +39,7 @@
_="install prompt_swal">
|
-
{{ exchange_rate.date|custom_date:request.user }} |
+
{{ exchange_rate.date|date:"SHORT_DATETIME_FORMAT" }} |
{{ exchange_rate.from_currency.code }} x {{ exchange_rate.to_currency.code }} |
1 {{ exchange_rate.from_currency.code }} ≅ {% currency_display amount=exchange_rate.rate prefix=exchange_rate.to_currency.prefix suffix=exchange_rate.to_currency.suffix decimal_places=exchange_rate.to_currency.decimal_places%} |