27 lines
517 B
HTML
27 lines
517 B
HTML
{% extends "base.html" %}
|
|
|
|
{% 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>
|
|
|
|
{% endfor %}
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
{% endblock body %}
|