Renamed the human_date filter to smart_date.

This commit is contained in:
依瑪貓 2020-07-02 07:40:45 +08:00
parent a315907a5a
commit dc14f2e27a
2 changed files with 2 additions and 2 deletions

View File

@ -49,7 +49,7 @@ First written: 2020/7/1
<tbody>
{% for record in records %}
<tr>
<td>{{ record.transaction.date|human_date }}</td>
<td>{{ record.transaction.date|smart_date }}</td>
<td>{{ record.subject.title_zhtw }}</td>
<td>{{ record.summary }}</td>
<td>{{ record.debit_amount|intcomma:False }}</td>

View File

@ -25,7 +25,7 @@ register = template.Library()
@register.filter(is_safe=True)
def human_date(value):
def smart_date(value):
"""Formats the date for human friendliness.
Args: