you’d have to help me here, Ive never done symbolic links in Hassio templates…could you give me 1 example how that should be written please?
secondly, and please indulge me, is there truly no way available of iterating over this list https://gist.github.com/pamelafox/986163 , look for the attribute time_zone of a given device_tracker and simple report the country_code or name that goes with it. Seems to be completely feasible, and the list isn’t that horrifically long is it? The list seems made for these kind of searches?
Many Ui-lovelace.yaml files are a tenfold of it 
it would be a second best way, only topped by an internal python function, which I woud have hoped this:
At any rate, this is how you can identify the countries that use a given timezone, like this:
{country for country, timezones in country_timezones.items()
if timezone in timezones}
If you need to do lots of these lookups, you can of course build your own dict to make it faster and simpler:
timezone_countries = {}
for country, timezones in country_timezones.items():
for timezone in timezones:
timezone_countries.setdefault(timezone, set()).add(country)
And now it’s just:
timezone_countries[timezone]
could have been…please let me carefully ask @pnbruckner and @petro to join in and have a look?