diff options
author | François Schmidts <francois.schmidts@gmail.com> | 2015-04-12 21:44:20 +0200 |
---|---|---|
committer | François Schmidts <francois.schmidts@gmail.com> | 2015-04-14 08:49:15 +0200 |
commit | dc0cf1a2789293bb3459ea8fe1f611edda075eba (patch) | |
tree | af1755fb38baac94c3efa37eacc11e0d04c2a6dc /pyaggr3g470r/templates/layout.html | |
parent | Removed a link pointing to a deleted page. (diff) | |
download | newspipe-dc0cf1a2789293bb3459ea8fe1f611edda075eba.tar.gz newspipe-dc0cf1a2789293bb3459ea8fe1f611edda075eba.tar.bz2 newspipe-dc0cf1a2789293bb3459ea8fe1f611edda075eba.zip |
redoing conf gathering and using it in templates
Diffstat (limited to 'pyaggr3g470r/templates/layout.html')
-rw-r--r-- | pyaggr3g470r/templates/layout.html | 4 |
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> <b class="caret"></b></div> |