headline/view/templates/feeds.html

27 lines
569 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 %}
2023-08-20 16:22:59 +02:00
<div class="container my-6">
<div class="">
<table class="table-styled w-full">
2023-08-16 18:52:24 +02:00
<thead>
<tr>
2023-08-20 16:22:59 +02:00
<th class="text-caption">Name</th>
<th class="text-caption">RSS/Atom URL</th>
<th class="text-caption">Unique tag</th>
2023-08-16 18:52:24 +02:00
</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>
</tr>
2023-08-20 16:22:59 +02:00
{% endfor %}
2023-08-16 18:52:24 +02:00
</tbody>
</table>
</div>
2023-08-16 18:52:24 +02:00
</div>
{% endblock body %}