aboutsummaryrefslogtreecommitdiff
path: root/src/web/templates/feed_list.html
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2016-09-20 15:08:47 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2016-09-20 15:08:47 +0200
commite60087e68546a8a9b483e09a78f4389fcc9ebc4e (patch)
treeacd780e7255d7de48a5519bc815c0e90f08d98b3 /src/web/templates/feed_list.html
parentDraft for a public user profile page. (diff)
downloadnewspipe-e60087e68546a8a9b483e09a78f4389fcc9ebc4e.tar.gz
newspipe-e60087e68546a8a9b483e09a78f4389fcc9ebc4e.tar.bz2
newspipe-e60087e68546a8a9b483e09a78f4389fcc9ebc4e.zip
Few improvemnts for the tag cloud of the user's profile pages.
Diffstat (limited to 'src/web/templates/feed_list.html')
-rw-r--r--src/web/templates/feed_list.html52
1 files changed, 22 insertions, 30 deletions
diff --git a/src/web/templates/feed_list.html b/src/web/templates/feed_list.html
index 04543e4c..f8e3551e 100644
--- a/src/web/templates/feed_list.html
+++ b/src/web/templates/feed_list.html
@@ -4,45 +4,37 @@
<thead>
<tr>
<th>#</th>
- {% if current_user.is_authenticated and current_user.id == user.id %}
- <th>{{ _('Status') }}</th>
- {% endif %}
+ <th>{{ _('Status') }}</th>
<th>{{ _('Title') }}</th>
<th>{{ _('Site') }}</th>
- {% if current_user.is_authenticated and current_user.id == user.id %}
- <th>{{ _('Articles') }}</th>
- <th>{{ _('Actions') }}</th>
- {% endif %}
+ <th>{{ _('Articles') }}</th>
+ <th>{{ _('Actions') }}</th>
</tr>
</thead>
<tbody>
{% for feed in feeds %}
- <tr {% if not feed.enabled and current_user.is_authenticated %}class="warning"{% endif %}>
+ <tr {% if not feed.enabled %}class="warning"{% endif %}>
<td>{{ loop.index }}</td>
- {% if current_user.is_authenticated and current_user.id == user.id %}
- <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 %}
- {% if feed.error_count >= conf.DEFAULT_MAX_ERROR %}
- <i class="glyphicon glyphicon-exclamation-sign" title="{{ _('Feed encountered too much errors.') }}"></i>
- {% endif %}
- </td>
- {% endif %}
+ <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 %}
+ {% if feed.error_count >= conf.DEFAULT_MAX_ERROR %}
+ <i class="glyphicon glyphicon-exclamation-sign" title="{{ _('Feed encountered too much errors.') }}"></i>
+ {% endif %}
+ </td>
<td>{% if feed.icon_url %}<img src="{{ url_for('icon.icon', url=feed.icon_url) }}" width="16px" />&nbsp;{% endif %}{{ feed.title }}</td>
<td><a href="{{ feed.site_link }}">{{ feed.site_link }}</a></td>
- {% if current_user.is_authenticated and current_user.id == user.id %}
- <td>( {{ unread_article_count.get(feed.id, 0) }} ) {{ article_count.get(feed.id, 0) }}</td>
- <td>
- <a href="{{ url_for("feed.feed", feed_id=feed.id) }}"><i class="glyphicon glyphicon-info-sign" title="{{ _('Information') }}"></i></a>
- <a href="{{ url_for("feed.form", feed_id=feed.id) }}"><i class="glyphicon glyphicon-edit" title="{{ _('Edit this feed') }}"></i></a>
- <a href="{{ url_for("feed.duplicates", feed_id=feed.id) }}"><i class="glyphicon glyphicon-book" title="{{ _('Duplicate articles') }}"></i></a>
- <a href="{{ url_for("feed.delete", feed_id=feed.id) }}"><i class="glyphicon glyphicon-remove" title="{{ _('Delete this feed') }}" onclick="return confirm('{{ _('You are going to delete this feed.') }}');"></i></a>
- </td>
- {% endif %}
- </tr>
+ <td>( {{ unread_article_count.get(feed.id, 0) }} ) {{ article_count.get(feed.id, 0) }}</td>
+ <td>
+ <a href="{{ url_for("feed.feed", feed_id=feed.id) }}"><i class="glyphicon glyphicon-info-sign" title="{{ _('Information') }}"></i></a>
+ <a href="{{ url_for("feed.form", feed_id=feed.id) }}"><i class="glyphicon glyphicon-edit" title="{{ _('Edit this feed') }}"></i></a>
+ <a href="{{ url_for("feed.duplicates", feed_id=feed.id) }}"><i class="glyphicon glyphicon-book" title="{{ _('Duplicate articles') }}"></i></a>
+ <a href="{{ url_for("feed.delete", feed_id=feed.id) }}"><i class="glyphicon glyphicon-remove" title="{{ _('Delete this feed') }}" onclick="return confirm('{{ _('You are going to delete this feed.') }}');"></i></a>
+ </td>
+ </tr>
{% endfor %}
</tbody>
</table>
bgstack15