Advertisement
chrisdaloa

Giorno e ora

May 30th, 2019
374
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.49 KB | None | 0 0
  1.         {% set giorno = ['Domenica', 'Lunedì', 'Martedì', 'Mercoledì', 'Giovedì', 'Venerdì', 'Sabato'] %}
  2.         {% set mese = ['Gennaio', 'Febbraio', 'Marzo', 'Aprile', 'Maggio', 'Giugno', 'Luglio', 'Agosto', 'Settembre', 'Ottobre', 'Novembre', 'Dicembre'] %}
  3.         {% set giorno_della_settimana = giorno[now().weekday()] %}
  4.         {% set mese = mese[now().month - 1] %}
  5.         {{ giorno_della_settimana }} {{ now().day }} {{ mese }} Ore {{ now().timestamp() | timestamp_custom('%H:%M') }}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement