aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r
diff options
context:
space:
mode:
authorCédric Bonhomme <kimble.mandel@gmail.com>2013-11-05 07:59:34 +0100
committerCédric Bonhomme <kimble.mandel@gmail.com>2013-11-05 07:59:34 +0100
commit5780ba6440753ffaf2d35a85a83f1449338c44fc (patch)
treee5cfed5c7a6d2f8d0b7a945d32bd9e769fe06db5 /pyaggr3g470r
parentNavbar aligned at right. (diff)
downloadnewspipe-5780ba6440753ffaf2d35a85a83f1449338c44fc.tar.gz
newspipe-5780ba6440753ffaf2d35a85a83f1449338c44fc.tar.bz2
newspipe-5780ba6440753ffaf2d35a85a83f1449338c44fc.zip
Minor improvement for the /unread tempate.
Diffstat (limited to 'pyaggr3g470r')
-rw-r--r--pyaggr3g470r/templates/unread.html52
1 files changed, 28 insertions, 24 deletions
diff --git a/pyaggr3g470r/templates/unread.html b/pyaggr3g470r/templates/unread.html
index 46842382..e962a9f1 100644
--- a/pyaggr3g470r/templates/unread.html
+++ b/pyaggr3g470r/templates/unread.html
@@ -1,37 +1,41 @@
{% extends "layout.html" %}
{% block content %}
<div class="container">
- {% for feed in feeds %}
- <div class="row">
- <div class="col-md-6 col-md-offset-3">
- <h1>{{ feed.title }}</h1>
- <a href="/articles/{{ feed.oid }}"><i class="glyphicon glyphicon-th-list"></i></a>
- </div>
- </div>
- {% for number in range(0, feed.articles|length-(feed.articles|length % 3), 3) %}
+ {% if feeds|count == 0 %}
+ <p>No unread articles.</p>
+ {% else %}
+ {% for feed in feeds %}
<div class="row">
- {% for n in range(number, number+3) %}
- <div class="col-xs-6 col-sm-4 col-md-4">
- {% if feed.articles[n].readed %}<h3>{% else %}<h1>{% endif %}
- <a href="/article/{{ feed.articles[n].id }}">{{ feed.articles[n].title }}</a><h2>
- {% if feed.articles[n].readed %}</h3>{% else %}</h1>{% endif %}
- <h6>{{ feed.articles[n].date }}</h6>
+ <div class="col-md-6 col-md-offset-3">
+ <h1>{{ feed.title }}</h1>
+ <a href="/articles/{{ feed.oid }}"><i class="glyphicon glyphicon-th-list"></i></a>
</div>
- {% endfor %}
</div>
- {% endfor %}
- {% if feed.articles|length % 3 != 0 %}
- <div class="row">
- {% for n in range(0, feed.articles|length % 3) %}
+ {% for number in range(0, feed.articles|length-(feed.articles|length % 3), 3) %}
+ <div class="row">
+ {% for n in range(number, number+3) %}
<div class="col-xs-6 col-sm-4 col-md-4">
{% if feed.articles[n].readed %}<h3>{% else %}<h1>{% endif %}
<a href="/article/{{ feed.articles[n].id }}">{{ feed.articles[n].title }}</a><h2>
{% if feed.articles[n].readed %}</h3>{% else %}</h1>{% endif %}
<h6>{{ feed.articles[n].date }}</h6>
</div>
- {% endfor %}
- </div>
- {% endif %}
- {% endfor %}
+ {% endfor %}
+ </div>
+ {% endfor %}
+ {% if feed.articles|length % 3 != 0 %}
+ <div class="row">
+ {% for n in range(0, feed.articles|length % 3) %}
+ <div class="col-xs-6 col-sm-4 col-md-4">
+ {% if feed.articles[n].readed %}<h3>{% else %}<h1>{% endif %}
+ <a href="/article/{{ feed.articles[n].id }}">{{ feed.articles[n].title }}</a><h2>
+ {% if feed.articles[n].readed %}</h3>{% else %}</h1>{% endif %}
+ <h6>{{ feed.articles[n].date }}</h6>
+ </div>
+ {% endfor %}
+ </div>
+ {% endif %}
+ {% endfor %}
+ {% endif}
</div><!-- /.container -->
-{% endblock %} \ No newline at end of file
+{% endblock %}
bgstack15