mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-09 09:23:14 +02:00
News download: Restore article downloaded by calibre footer
This commit is contained in:
parent
0ed7568ae1
commit
1dafae3c4a
1 changed files with 2 additions and 0 deletions
|
|
@ -65,6 +65,7 @@ def _generate(self, bottom, feed, art, number_of_articles_in_feed,
|
|||
text = 'This article was downloaded by '
|
||||
p = PT(text, STRONG(__appname__), A(url, href=url), style='text-align:left')
|
||||
p[0].tail = ' from '
|
||||
navbar.append(p)
|
||||
navbar.append(BR())
|
||||
navbar.append(BR())
|
||||
else:
|
||||
|
|
@ -111,6 +112,7 @@ def _generate(self, bottom, feed, art, number_of_articles_in_feed,
|
|||
text = 'This article was downloaded by '
|
||||
p = PT(text, STRONG(__appname__), A(url, href=url), style='text-align:left')
|
||||
p[0].tail = ' from '
|
||||
navbar.append(p)
|
||||
navbar.append(BR())
|
||||
navbar.append(BR())
|
||||
else:
|
||||
|
|
|
|||
Loading…
Reference in a new issue