I guess CityWithSomeData is a slice, if so have a try like that:
type viewModel struct {
List []City
}
then, in your template:
{{range .List}}
{{$city:=.Name}}
{{range .Regions}}
{{$region:=.Name}}
{{template "data" .Shops $city $region}}
{{end}}
{{end}}