mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-04-24 09:38:35 +02:00
13 lines
600 B
HTML
13 lines
600 B
HTML
{% load currency_display %}
|
|
|
|
{% if not divless %}
|
|
<div class="{% if text_end %}text-end{% elif text_start %}text-start{% endif %}">
|
|
{% endif %}
|
|
<span class="amount{% if color == 'grey' or color == "gray" %} text-exchange-rate{% elif color == 'green' %} text-income {% elif color == 'red' %} text-expense{% endif %} font-medium {{ custom_class }}"
|
|
data-original-value="{% currency_display amount=amount prefix=prefix suffix=suffix decimal_places=decimal_places %}"
|
|
data-amount="{{ amount|floatformat:"-40u" }}">
|
|
</span><span>{{ slot }}</span>
|
|
{% if not divless %}
|
|
</div>
|
|
{% endif %}
|