How to list looping result?

Hello all,
I need to list in my lovelace all timer and related duration attribute. Code for loop is this:

         {% for state in states.timer %}
           {{ state.entity_id }}
           {{ state.attributes.duration }}
         {% endfor %}

but in which type of card do I have to insert it in order to display the result on my lovelace? I’ve tried a few without success. Thank you

The markdown card.

auto-entities card with using “template” option

1 Like