2023-08-16 18:52:24 +02:00
|
|
|
{% extends "base.html" %}
|
2022-08-27 12:48:40 +02:00
|
|
|
|
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>
|
2022-08-27 12:48:40 +02:00
|
|
|
|
2023-08-16 18:52:24 +02:00
|
|
|
{% endfor %}
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2022-08-27 12:48:40 +02:00
|
|
|
</div>
|
2023-08-16 18:52:24 +02:00
|
|
|
</div>
|
|
|
|
{% endblock body %}
|