Hi,
I created this view for a relationship:
{% set relationship = attribute( relationships, 'curso-capitulos' ) %}
{% for post in relationship.to %}
- {{ post.title }}
{% endfor %}
I want to display the post titles as an ordered list, but it assigns number 1 to each post title instead of following a sequence.
https://www.screencast.com/t/URyO7wIF1vjb
How can I make it work?
Thanks,