headline/view/templates/feeds.html

35 lines
No EOL
606 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
{% include 'parts/head.html' %}
</head>
<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 %}
</tbody>
</table>
</div>
</div>
{% include 'parts/footer.html' %}
</body>
</html>