Advertisement
JLindvig

Local time

Jan 24th, 2021
1,353
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.25 KB | None | 0 0
  1. local_date:
  2.   value_template: ->
  3.    {% set weekdays_dk = ["Søn", "Man", "Tirs", "Ons", "Tors", "Fre", "Lør"] %}
  4.     {% set ts = as_timestamp(now()) %}
  5.     {{ weekdays_dk[ts | timestamp_custom('%w') | int] }} {{ ts | timestamp_custom('%d.%m.%y') }}
  6.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement