-
Notifications
You must be signed in to change notification settings - Fork 37
Open
Description
I'd like to loop through a list of items and display it in a table. Something like this:
<table>
<thead>
<tr>
<th>#</th>
<th>Name</th>
</tr>
</thead>
<tbody>
{% for item in items %}
<tr>
<td>{{item.id}}</td>
<td>{{item.name}}</td>
</tr>
{% endfor %}
</tbody>
</table>
How can I implement such? It might also be good to see how one can extend the plugin.
Metadata
Metadata
Assignees
Labels
No labels