From f7233699710a9a5c01baa88b9db5f4886a1fc812 Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Tue, 24 Dec 2013 09:58:58 +0100 Subject: Fixed mistyped HTML tag in templates. --- pyaggr3g470r/templates/articles.html | 4 ++-- pyaggr3g470r/templates/favorites.html | 4 ++-- pyaggr3g470r/templates/home.html | 4 ++-- pyaggr3g470r/templates/search.html | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/pyaggr3g470r/templates/articles.html b/pyaggr3g470r/templates/articles.html index 32631ca0..f944d1ed 100644 --- a/pyaggr3g470r/templates/articles.html +++ b/pyaggr3g470r/templates/articles.html @@ -13,7 +13,7 @@ {% for n in range(number, number+3) %}
{% if feed.articles[n].readed %}

{% else %}

{% endif %} - {{ feed.articles[n].title }}

+ {{ feed.articles[n].title }} {% if feed.articles[n].readed %}

{% else %}{% endif %}
{{ feed.articles[n].date }}
@@ -25,7 +25,7 @@ {% for n in range(feed.articles|length-(feed.articles|length % 3), feed.articles|length) %}
{% if feed.articles[n].readed %}

{% else %}

{% endif %} - {{ feed.articles[n].title }}

+ {{ feed.articles[n].title }} {% if feed.articles[n].readed %}

{% else %}{% endif %}
{{ feed.articles[n].date }}
diff --git a/pyaggr3g470r/templates/favorites.html b/pyaggr3g470r/templates/favorites.html index 41abc4a6..81d9e6bd 100644 --- a/pyaggr3g470r/templates/favorites.html +++ b/pyaggr3g470r/templates/favorites.html @@ -18,7 +18,7 @@ {% for n in range(number, number+3) %}
{% if feed.articles[n].readed %}

{% else %}

{% endif %} - {{ feed.articles[n].title }}

+ {{ feed.articles[n].title }} {% if feed.articles[n].readed %}

{% else %}{% endif %}
{{ feed.articles[n].date }}
@@ -30,7 +30,7 @@ {% for n in range(feed.articles|length-(feed.articles|length % 3), feed.articles|length) %}
{% if feed.articles[n].readed %}

{% else %}

{% endif %} - {{ feed.articles[n].title }}

+ {{ feed.articles[n].title }} {% if feed.articles[n].readed %}

{% else %}{% endif %}
{{ feed.articles[n].date }}
diff --git a/pyaggr3g470r/templates/home.html b/pyaggr3g470r/templates/home.html index c00b6c5c..c3548e79 100644 --- a/pyaggr3g470r/templates/home.html +++ b/pyaggr3g470r/templates/home.html @@ -18,7 +18,7 @@ {% for n in range(number, number+3) %}
{% if feed.articles[n].readed %}

{% else %}

{% endif %} - {{ feed.articles[n].title }}

+ {{ feed.articles[n].title }} {% if feed.articles[n].readed %}

{% else %}{% endif %}
{{ feed.articles[n].date }}
@@ -30,7 +30,7 @@ {% for n in range(feed.articles|length-(feed.articles|length % 3), feed.articles|length) %}
{% if feed.articles[n].readed %}

{% else %}

{% endif %} - {{ feed.articles[n].title }}

+ {{ feed.articles[n].title }} {% if feed.articles[n].readed %}

{% else %}{% endif %}
{{ feed.articles[n].date }}
diff --git a/pyaggr3g470r/templates/search.html b/pyaggr3g470r/templates/search.html index e62cd45b..d90b5de0 100644 --- a/pyaggr3g470r/templates/search.html +++ b/pyaggr3g470r/templates/search.html @@ -19,7 +19,7 @@ {% for n in range(number, number+3) %}
{% if feed.articles[n].readed %}

{% else %}

{% endif %} - {{ feed.articles[n].title }}

+ {{ feed.articles[n].title }} {% if feed.articles[n].readed %}

{% else %}{% endif %}
{{ feed.articles[n].date }}
@@ -31,7 +31,7 @@ {% for n in range(feed.articles|length-(feed.articles|length % 3), feed.articles|length) %}
{% if feed.articles[n].readed %}

{% else %}

{% endif %} - {{ feed.articles[n].title }}

+ {{ feed.articles[n].title }} {% if feed.articles[n].readed %}

{% else %}{% endif %}
{{ feed.articles[n].date }}
-- cgit