blob: f15d5f0a8f2754c677c30673f46eb3ad40605183 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
{% if feeds | length != 0 %}
<div class="table-responsive">
<table class="table table-striped">
<thead>
<tr>
<th>#</th>
<th>{{ _('Title') }}</th>
<th>{{ _('Site') }}</th>
</tr>
</thead>
<tbody>
{% for feed in feeds %}
<tr>
<td>{{ loop.index }}</td>
<td>{% if feed.icon_url %}<img src="{{ url_for('icon.icon', url=feed.icon_url) }}" width="16px" /> {% endif %}{{ feed.title }}</td>
<td><a href="{{ feed.site_link }}">{{ feed.site_link }}</a></td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
{% endif %}
|