From 665878be6d433296c1386beace0fced0b77bfe7b Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Thu, 13 Dec 2012 22:42:36 +0100 Subject: Template for the /feed page. --- source/templates/feed.html | 122 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 122 insertions(+) create mode 100644 source/templates/feed.html (limited to 'source/templates/feed.html') diff --git a/source/templates/feed.html b/source/templates/feed.html new file mode 100644 index 00000000..5fc5d170 --- /dev/null +++ b/source/templates/feed.html @@ -0,0 +1,122 @@ +## feed.html +<%inherit file="base.html"/> +<% +import utils +%> +
+

The feed ${feed['feed_title']} contains ${nb_articles_feed} articles. +Representing ${(round(float(nb_articles_feed) / nb_articles_total, 4)) * 100} percent of the total (${nb_articles_total}).

+ +%if articles: +

${(nb_unread_articles_feed == 0 and ["All articles are read"] or [str(nb_unread_articles_feed) + " unread article" + (nb_unread_articles_feed == 1 and [""] or ["s"])[0]])[0]}.

+%endif + +%if feed["mail"] == True: +

You are receiving articles from this feed to the address: ${mail_to}. + Stop receiving articles from this feed.

+%endif + +%if articles != []: +

The last article was posted ${delta_today.days} day(s) ago.

+ %if delta_today.days > 0: +

Daily average: ${average}, between the ${first_post_date} and the ${end_post_date}.

+ %endif + + +
+

Recent articles

+ <% + html = "" + %> + %for article in articles: + <% + if article["article_readed"] == False: + # not readed articles are in bold + not_read_begin, not_read_end = "", "" + else: + not_read_begin, not_read_end = "", "" + + # display a heart for faved articles + if article["article_like"] == True: + like = """ """ + else: + like = "" + + # Descrition for the CSS ToolTips + article_content = utils.clear_string(article["article_content"]) + if article_content: + description = " ".join(article_content[:500].split(' ')[:-1]) + else: + description = "No description." + # Title of the article + article_title = article["article_title"] + if len(article_title) >= 80: + article_title = article_title[:80] + " ..." + + # a description line per article (date, title of the article and + # CSS description tooltips on mouse over) + html += article["article_date"].strftime('%Y-%m-%d %H:%M') + " - " + \ + """%s%s%s%s""" % \ + (feed["feed_id"], article["article_id"], not_read_begin, \ + article_title, not_read_end, description) + like + "
\n" + %> + %endfor + ${html} + + All articles    +
+ + %if nb_favorites != 0: +

+

Your favorites articles for this feed

+ <% + html = "" + %> + %for article in favorites: + <% + #descrition for the CSS ToolTips + article_content = utils.clear_string(article["article_content"]) + if article_content: + description = " ".join(article_content[:500].split(' ')[:-1]) + else: + description = "No description." + + # a description line per article (date, title of the article and + # CSS description tooltips on mouse over) + html += article["article_date"].strftime('%Y-%m-%d %H:%M') + " - " + \ + """%s%s
\n""" % \ + (feed["feed_id"], article["article_id"], article["article_title"][:150], description) + %> + %endfor + ${html} + %endif +%endif + + + +
+

Edit this feed

+
+ + +
+ +
+ + +
+ +
+ + +
+ + + +
+

Tag cloud

+
+ Minimum size of a word: + +
+
${tag_cloud}
\ No newline at end of file -- cgit