aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/templates
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2015-05-17 11:13:01 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2015-05-17 11:13:01 +0200
commitf262b4bc7729716bff75faaf8015e22015db2d0e (patch)
tree9a7ac2eca80377ba85d6a2d1bf740d2e3a50570f /pyaggr3g470r/templates
parentThe web server should run on 0.0.0.0 for Vagrant. (diff)
downloadnewspipe-f262b4bc7729716bff75faaf8015e22015db2d0e.tar.gz
newspipe-f262b4bc7729716bff75faaf8015e22015db2d0e.tar.bz2
newspipe-f262b4bc7729716bff75faaf8015e22015db2d0e.zip
Finally, the side menu was easier to understand before.
Diffstat (limited to 'pyaggr3g470r/templates')
-rw-r--r--pyaggr3g470r/templates/home.html6
1 files changed, 1 insertions, 5 deletions
diff --git a/pyaggr3g470r/templates/home.html b/pyaggr3g470r/templates/home.html
index e5db30e1..c2a8b114 100644
--- a/pyaggr3g470r/templates/home.html
+++ b/pyaggr3g470r/templates/home.html
@@ -10,11 +10,7 @@
<ul class="nav sidenav navbar-collapse pre-scrollable" data-offset-top="0" data-offset-bottom="0" style="min-height: 650px;">
<li><a href="{{ gen_url(feed_id=0) }}">
{% if not feed_id %}<b>{% endif %}
- {% if filter_=='all' %}
- {{ _('All feeds') }} <span id="total-unread" class="badge pull-right">{{ unread.items()|sum(attribute="1") }} / {{ articles.__len__() }}</span>
- {% else %}
- {{ _('All feeds') }} <span id="total-unread" class="badge pull-right">{{ articles.__len__() }}</span>
- {% endif %}
+ {{ _('All feeds') }} <span id="total-unread" class="badge pull-right">{{ articles.__len__() }}</span>
{% if not feed_id %}</b>{% endif %}
</a></li>
{% for fid, nbunread in unread|dictsort(by='value')|reverse %}
bgstack15