aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/templates/layout.html
diff options
context:
space:
mode:
authorCédric Bonhomme <kimble.mandel+bitbucket@gmail.com>2015-04-14 09:16:37 +0200
committerCédric Bonhomme <kimble.mandel+bitbucket@gmail.com>2015-04-14 09:16:37 +0200
commit4cb2b6cfe87721be61e82c0594a09df01f010e44 (patch)
treee5c6bdb02c2ed6d30ec2f0aff17b49390d386614 /pyaggr3g470r/templates/layout.html
parentRemoved a link pointing to a deleted page. (diff)
parentmaking fetch call dependent to the crawling method option (diff)
downloadnewspipe-4cb2b6cfe87721be61e82c0594a09df01f010e44.tar.gz
newspipe-4cb2b6cfe87721be61e82c0594a09df01f010e44.tar.bz2
newspipe-4cb2b6cfe87721be61e82c0594a09df01f010e44.zip
Merged in jaesivsm/pyaggr3g470r (pull request #9)
adding conf defaults and using conf in templates
Diffstat (limited to 'pyaggr3g470r/templates/layout.html')
-rw-r--r--pyaggr3g470r/templates/layout.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/pyaggr3g470r/templates/layout.html b/pyaggr3g470r/templates/layout.html
index e3d3be38..484bbdc7 100644
--- a/pyaggr3g470r/templates/layout.html
+++ b/pyaggr3g470r/templates/layout.html
@@ -65,7 +65,7 @@
{% else %}
<li><a accesskey="f" href="{{ url_for("favorites") }}"><span class="glyphicon glyphicon-star"></span> {{ _('Favorites') }}</a></li>
{% endif %}
- {% if not on_heroku or g.user.is_admin() %}
+ {% if conf.CRAWLING_METHOD == "classic" and (not conf.ON_HEROKU or g.user.is_admin()) %}
<li><a accesskey="r" href="/fetch"><span class="glyphicon glyphicon-import"></span> {{ _('Fetch') }}</a></li>
{% endif %}
<li class="dropdown">
@@ -94,7 +94,7 @@
</ul>
</li>
- {% if not on_heroku %}
+ {% if not conf.ON_HEROKU %}
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">
<div><span class="glyphicon glyphicon-search"></span>&nbsp;<b class="caret"></b></div>
bgstack15