blob: 6ab00af3c768c90f610d7bad3d29ad13e0b85ba3 (
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
33
34
35
36
37
38
39
40
41
42
|
{% extends "layout.html" %}
{% block content %}
<div class="container">
<h1>You are subscribed to {{ feeds|count }} feeds · Add a <a href="/edit_feed/">feed</a></h1>
<div class="table-responsive">
<table class="table table-striped">
<thead>
<tr>
<th>#</th>
<th>Status</th>
<th>Title</th>
<th>Site</th>
<th>Articles</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
{% for feed in feeds|sort(attribute="title") %}
<tr>
<td>{{ loop.index }}</td>
<td>
{% if feed.enabled %}
<i class="glyphicon glyphicon-eye-open" title="Feed enabled"></i>
{% else %}
<i class="glyphicon glyphicon-eye-close" title="Feed disabled"></i>
{% endif %}
</td>
<td><a href="/feed/{{ feed.oid }}" {% if feed.description %}title="{{ feed.description }}"{% endif %}>{{ feed.title }}</a></td>
<td><a href="{{ feed.site_link }}">{{ feed.site_link }}</a></td>
<td>{{ feed.articles|count }}</td>
<td>
<a href="/articles/{{ feed.oid }}"><i class="glyphicon glyphicon-th-list" title="All articles"></i></a>
<a href="/edit_feed/{{ feed.oid }}"><i class="glyphicon glyphicon-edit" title="Edit this feed"></i></a>
<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 %}
|