Remove empty value fill-ins
This commit is contained in:
parent
c77b88c2f7
commit
a1d48ca246
2 changed files with 2 additions and 2 deletions
|
@ -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>
|
||||
|
|
|
@ -8,7 +8,7 @@ register = template.Library()
|
|||
@register.filter
|
||||
def value(val, pm=False, r=2):
|
||||
if not val:
|
||||
return mark_safe("–")
|
||||
return ""
|
||||
_prefix = ""
|
||||
_suffix = " €"
|
||||
_val = formats.number_format(round(val, r), r, use_l10n=True, force_grouping=True)
|
||||
|
|
Loading…
Reference in a new issue