diff options
author | Cédric Bonhomme <kimble.mandel@gmail.com> | 2014-01-27 11:00:28 +0100 |
---|---|---|
committer | Cédric Bonhomme <kimble.mandel@gmail.com> | 2014-01-27 11:00:28 +0100 |
commit | 524d7811c8ba66b1756a1f599dd894e04c6b8cf9 (patch) | |
tree | 42c32d184907ca159c76dd44adb5be75c480082c /pyaggr3g470r/templates/articles.html | |
parent | Improved /inactives template. (diff) | |
download | newspipe-524d7811c8ba66b1756a1f599dd894e04c6b8cf9.tar.gz newspipe-524d7811c8ba66b1756a1f599dd894e04c6b8cf9.tar.bz2 newspipe-524d7811c8ba66b1756a1f599dd894e04c6b8cf9.zip |
explicitly mark a string as safe HTML with |safe
Diffstat (limited to 'pyaggr3g470r/templates/articles.html')
-rw-r--r-- | pyaggr3g470r/templates/articles.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pyaggr3g470r/templates/articles.html b/pyaggr3g470r/templates/articles.html index f462f28b..eb4701d7 100644 --- a/pyaggr3g470r/templates/articles.html +++ b/pyaggr3g470r/templates/articles.html @@ -2,7 +2,7 @@ {% block content %} <div class="container"> <div class="jumbotron"> - <h2><a href="{{ feed.site_link }}">{{ feed.title }}</a></h2> + <h2><a href="{{ feed.site_link }}">{{ feed.title|safe }}</a></h2> <a href="/feed/{{ feed.oid }}"><i class="glyphicon glyphicon-info-sign" title="Details"></i></a> <a href="/edit_feed/{{ feed.oid }}"><i class="glyphicon glyphicon-edit" title="Edit this feed"></i></a> <h3>{{ feed.articles|count }} articles.</h3> @@ -15,7 +15,7 @@ {% 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> + <a href="/article/{{ feed.articles[n].id }}">{{ feed.articles[n].title|safe }}</a> {% if feed.articles[n].readed %}</h3>{% else %}</h1>{% endif %} <h6>{{ feed.articles[n].date }}</h6> </div> @@ -27,7 +27,7 @@ {% for n in range(feed.articles|length-(feed.articles|length % 3), feed.articles|length) %} <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> + <a href="/article/{{ feed.articles[n].id }}">{{ feed.articles[n].title|safe }}</a> {% if feed.articles[n].readed %}</h3>{% else %}</h1>{% endif %} <h6>{{ feed.articles[n].date }}</h6> </div> |