Remove empty value fill-ins

This commit is contained in:
Edgar P. Burkhart 2023-04-20 10:21:18 +02:00
parent c77b88c2f7
commit a1d48ca246
Signed by: edpibu
GPG key ID: 9833D3C5A25BD227
2 changed files with 2 additions and 2 deletions

View file

@ -22,7 +22,7 @@
{% for date in history.data %}
<tr>
<td class="icon">
<span class="ri-{% if date.sum > 0 %}arrow-up-s-line green{% elif date.sum < 0 %}arrow-down-s-line red{% else %}equal-line{% endif %}"></span>
<span class="ri-{% if date.sum > 0 %}arrow-up-s-line green{% elif date.sum < 0 %}arrow-down-s-line red{% endif %}"></span>
</td>
<th class="date" scope="row">{{ date.month|date:"Y-m" }}</th>
<td class="value">{{ date.sum_m|pmrvalue }}</td>

View file

@ -8,7 +8,7 @@ register = template.Library()
@register.filter
def value(val, pm=False, r=2):
if not val:
return mark_safe("&ndash;")
return ""
_prefix = ""
_suffix = "&nbsp;€"
_val = formats.number_format(round(val, r), r, use_l10n=True, force_grouping=True)