diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2016-11-13 17:36:33 +0100 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2016-11-13 17:36:33 +0100 |
commit | 4dad282a9553a734c622211560c40b1dd9091b9c (patch) | |
tree | f899bb51f0f055dd90e248f88642079ec70e5b3a /src/web/templates | |
parent | Added page for public feeds. (diff) | |
download | newspipe-4dad282a9553a734c622211560c40b1dd9091b9c.tar.gz newspipe-4dad282a9553a734c622211560c40b1dd9091b9c.tar.bz2 newspipe-4dad282a9553a734c622211560c40b1dd9091b9c.zip |
check if feed is private
Diffstat (limited to 'src/web/templates')
-rw-r--r-- | src/web/templates/feed_list_simple.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/web/templates/feed_list_simple.html b/src/web/templates/feed_list_simple.html index 3e04ad7e..5f692a53 100644 --- a/src/web/templates/feed_list_simple.html +++ b/src/web/templates/feed_list_simple.html @@ -12,7 +12,7 @@ {% 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>{% if feed.icon_url %}<img src="{{ url_for('icon.icon', url=feed.icon_url) }}" width="16px" /> {% endif %} <a href="{{ url_for('feed.feed_pub', feed_id=feed.id) }}">{{ feed.title }}</a></td> <td><a href="{{ feed.site_link }}">{{ feed.site_link }}</a></td> </tr> {% endfor %} |