Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- {% set fav_club = "Brøndby IF" %}
- {% set ns = namespace(found = false) %}
- Kommende kampe:
- {%- for round in state_attr('sensor.superligaen', 'schedule') -%}
- {%- for match in round.matches if not match.result is defined and fav_club in match.clubs_playing and not ns.found %}
- {{ match.date }} {{ match.clubs_playing }}
- {% set ns.found = true %}
- {%- endfor -%}
- {% endfor %}
Add Comment
Please, Sign In to add comment