Given a list of assets, for each asset, how do I display a list of entries that relate to this asset? So, for instance, if asset A is selected as asset in entries 1 and 2, I want a list to be displayed like this:
- Asset A:
- Used in entry 1
- Used in entry 2
- Asset B:
- Used in ... etc.
With this ...
{% set content = craft.entries.section('content').find() %}
{% set usedFotos = craft.assets.relatedTo(content).find() | group('id') %}
... I can see if certain assets are used, but now I want to see what entr(y/ies) they belong to.