blob: c8024caa4072de671c3d072f8bbcafa0d04d0e33 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
{% extends "layout.html" %}
{% block content %}
<div class="container">
<h1>You are subscribed to the following feeds</h1>
<div class="table-responsive">
<table class="table table-striped">
<thead>
<tr>
<th>#</th>
<th>Title</th>
<th>Site</th>
<th>Articles</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
{% for feed in feeds %}
<tr>
<td>{{ loop.index }}</td>
<td><a href="/feed/{{ feed.oid }}">{{ feed.title }}</a></td>
<td><a href="{{ feed.site_link }}">{{ feed.site_link }}</a></td>
<td>{{ feed.articles|count }}</td>
<td><a href="/delete_feed/{{ feed.oid }}"><i class="glyphicon glyphicon-remove" title="Delete this feed"></i></a></td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div><!-- /.container -->
{% endblock %}
|