baleen/views/feed/index.twig.html

21 lines
513 B
HTML
Raw Normal View History

2024-12-31 16:21:19 +00:00
<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 }}/edit">Edit feed</a>
<a href="/feed/{{ feed.id }}/delete">Delete</a>
</td>
2024-12-31 16:21:19 +00:00
</tr>
{% endfor %}
</tbody>
</table>