diff options
author | François Schmidts <francois.schmidts@gmail.com> | 2015-04-08 12:33:40 +0200 |
---|---|---|
committer | François Schmidts <francois.schmidts@gmail.com> | 2015-04-12 14:31:06 +0200 |
commit | b343dc73e5ea4aaf1314b6b277c3806f15ac0635 (patch) | |
tree | ad31cf775685f51977b9a6dcad9e255e9087302f /pyaggr3g470r/templates/about.html | |
parent | Updated bootstrap. (diff) | |
download | newspipe-b343dc73e5ea4aaf1314b6b277c3806f15ac0635.tar.gz newspipe-b343dc73e5ea4aaf1314b6b277c3806f15ac0635.tar.bz2 newspipe-b343dc73e5ea4aaf1314b6b277c3806f15ac0635.zip |
moving feed views related code in views.feed and massive use of url_for
Diffstat (limited to 'pyaggr3g470r/templates/about.html')
-rw-r--r-- | pyaggr3g470r/templates/about.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyaggr3g470r/templates/about.html b/pyaggr3g470r/templates/about.html index 08b80fbb..901b3b35 100644 --- a/pyaggr3g470r/templates/about.html +++ b/pyaggr3g470r/templates/about.html @@ -17,7 +17,7 @@ <h1>{{ _('Help') }}</h1> <p>{{ _('If you have any problem, <a href="http://wiki.cedricbonhomme.org/contact">contact</a> the administrator.') }}</p> <p>{{ _('The documentation of the RESTful API is <a href="https://pyaggr3g470r.readthedocs.org/en/latest/web-services.html">here</a>.') }}</p> - <p>{{ _('You can subscribe to new feeds with a bookmarklet. Drag <a href="%(bookmarklet)s">this link</a> to your browser bookmarks.', bookmarklet='javascript:window.location="https://pyaggr3g470r.herokuapp.com/bookmarklet?url="+encodeURIComponent(document.location)') }}</p> + <p>{{ _('You can subscribe to new feeds with a bookmarklet. Drag <a href="%(bookmarklet)s">this link</a> to your browser bookmarks.', bookmarklet='javascript:window.location="%s?url="+encodeURIComponent(document.location)' % url_for('feed.bookmarklet', _external=True)) }}</p> </div> <div class="well"> <h1>{{ _('Donation') }}</h1> |