Skip to content

Commit

Permalink
fix: last modification column for tasks use date_time_format
Browse files Browse the repository at this point in the history
  • Loading branch information
Davidmattei committed Apr 9, 2024
1 parent 8a65532 commit fb96c71
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
{% endif %}
{%- endblock -%}

{%- block modified -%}<td data-order="{{ data.task_modified|date('U') }}">{{ data.task_modified -}}</td>{%- endblock -%}
{%- block modified -%}<td data-order="{{ data.task_modified|date('U') }}">{{ data.task_modified|date(date_time_format) -}}</td>{%- endblock -%}

{%- block actions -%}
<div class="btn-group">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
{% endif %}
{%- endblock -%}

{%- block modified -%}<td data-order="{{ data.task_modified|date('U') }}">{{ data.task_modified -}}</td>{%- endblock -%}
{%- block modified -%}<td data-order="{{ data.task_modified|date('U') }}">{{ data.task_modified|date(date_time_format) -}}</td>{%- endblock -%}

{%- block actions -%}
<div class="btn-group">
Expand Down

0 comments on commit fb96c71

Please sign in to comment.