26 lines
569 B
HTML
26 lines
569 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block body %}
|
|
<div class="container my-6">
|
|
<div class="">
|
|
<table class="table-styled w-full">
|
|
<thead>
|
|
<tr>
|
|
<th class="text-caption">Name</th>
|
|
<th class="text-caption">RSS/Atom URL</th>
|
|
<th class="text-caption">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>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
{% endblock body %}
|