baleen/views/feed/index.twig.html
2024-12-31 16:32:00 +00:00

17 lines
385 B
HTML

<h1>Your feeds</h1>
<table>
<thead>
<th>Title</th>
<th>Actions</th>
</thead>
<tbody>
{% for feed in feeds %}
<tr>
<td>{{ feed.title }}</td>
<td><a href="/feed/{{ feed.id }}">Link to feed</a><a href="/feed/{{ feed.id }}/delete">Delete</a></td>
</tr>
{% endfor %}
</tbody>
</table>