headline/view/templates/feeds.html

28 lines
517 B
HTML
Raw Normal View History

2023-08-16 18:52:24 +02:00
{% extends "base.html" %}
2023-08-16 18:52:24 +02:00
{% block body %}
<div class="container">
<div class="table-responsive">
<table class="table table-hover">
<thead>
<tr>
<th>Name</th>
<th>RSS/Atom URL</th>
<th>Unique tag</th>
</tr>
</thead>
<tbody>
{% for feed in feeds %}
<tr>
<td>{{ feed.feed_name }}</td>
<td>{{ feed.rss_source | urlize(target="_blank") }}</td>
<td>{{ feed.unique_tag }}</td>
2023-08-16 18:52:24 +02:00
{% endfor %}
</tr>
</tbody>
</table>
</div>
2023-08-16 18:52:24 +02:00
</div>
{% endblock body %}