Hello,
I'm building a directory where every entry has a location (handled by the location module).
I'd like to build a view to navigate by location within the directory.
The initial view would be something like:
COUNTRY1
- ProvinceA (28 entries)
- ProvinceB (35 entries)
- ProvinceC (1 entry)
COUNTRY2
- ProvinceA (10 entries)
- ProvinceB (4 entries)
...
Then, clicking on a province would refresh the view as follows:
ProvinceB
- City1 (5 entries)
- City2 (15 entries)
- City3 (17 entries)
...
And finally, clicking on a city would display all items located in this city.
I can see how I could use the country, province or city as view arguments to filter the entries (nodes) to be displayed. But how do I build the breakdown/navigation described above?
If I understand Views correctly, it's meant to handle lists of nodes, but not that type of breakdown/summary.
Thanks,
Vincent