Jeg endte opp med price_hour()
Edit bruker now() siden den er global uansett.
Så korrekt eksempel etter sist oppdatering skal være:
Sist oppdatering skal også endre raw today raw tomorrow, today og tomorrow ihht template som ble lagt inn.
{% set s = {
"hourly_fixed_cost": 0.5352,
"winter_night": 0.265,
"winter_day": 0.465,
"summer_day": 0.284,
"summer_night": 0.246,
"cert": 0.01
}
%}
{% if price_hour().month >= 5 and price_hour().month <11 %}
{% if price_hour().hour >=6 and price_hour().hour <23 %}
{{s.summer_day+s.hourly_fixed_cost+s.cert}}
{% else %}
{{s.night+s.hourly_fixed_cost+s.cert}}
{% endif %}
{% else %}
{% if price_hour().hour >=6 and price_hour().hour <23 %}
{{s.winter_day+s.hourly_fixed_cost+s.cert}}
{%else%}
{{s.winter_night+s.hourly_fixed_cost+s.cert}}
{% endif %}
{% endif %}