aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCédric Bonhomme <kimble.mandel@gmail.com>2013-11-05 22:41:19 +0100
committerCédric Bonhomme <kimble.mandel@gmail.com>2013-11-05 22:41:19 +0100
commitb1800b77d3a647bd4d93d931b410d9ba18bebfd5 (patch)
tree8cb37b29fa953bbb55168985c3183c24f24be1f1
parentUpdated layout template. (diff)
downloadnewspipe-b1800b77d3a647bd4d93d931b410d9ba18bebfd5.tar.gz
newspipe-b1800b77d3a647bd4d93d931b410d9ba18bebfd5.tar.bz2
newspipe-b1800b77d3a647bd4d93d931b410d9ba18bebfd5.zip
Updated template for favorites.
-rw-r--r--pyaggr3g470r/templates/favorites.html50
1 files changed, 27 insertions, 23 deletions
diff --git a/pyaggr3g470r/templates/favorites.html b/pyaggr3g470r/templates/favorites.html
index 46842382..e60ccd85 100644
--- a/pyaggr3g470r/templates/favorites.html
+++ b/pyaggr3g470r/templates/favorites.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 %}
+ <h1>No favorites.</h1>
+ {% 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
bgstack15