<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> </tr> {% endfor %} </tbody> </table>