aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2015-04-23 08:23:32 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2015-04-23 08:23:32 +0200
commit86449ca3ec67fdc62fcf55e93ff7416a9305fd0f (patch)
tree5302112bd638887ddfda5d5aaf891fa68600d58b /pyaggr3g470r
parentForgot to git add babaek.cfg. (diff)
downloadnewspipe-86449ca3ec67fdc62fcf55e93ff7416a9305fd0f.tar.gz
newspipe-86449ca3ec67fdc62fcf55e93ff7416a9305fd0f.tar.bz2
newspipe-86449ca3ec67fdc62fcf55e93ff7416a9305fd0f.zip
Removed HTML accesskey, not so useful.
Diffstat (limited to 'pyaggr3g470r')
-rw-r--r--pyaggr3g470r/templates/layout.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/pyaggr3g470r/templates/layout.html b/pyaggr3g470r/templates/layout.html
index 1be20f35..8b735c70 100644
--- a/pyaggr3g470r/templates/layout.html
+++ b/pyaggr3g470r/templates/layout.html
@@ -68,17 +68,17 @@
{% if favorites %}
<li><a href="{{ url_for("home") }}"><span class="glyphicon glyphicon-home"></span> {{ _('Home') }}</a></li>
{% else %}
- <li><a accesskey="f" href="{{ url_for("favorites") }}"><span class="glyphicon glyphicon-star"></span> {{ _('Favorites') }}</a></li>
+ <li><a href="{{ url_for("favorites") }}"><span class="glyphicon glyphicon-star"></span> {{ _('Favorites') }}</a></li>
{% endif %}
{% 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>
+ <li><a href="/fetch"><span class="glyphicon glyphicon-import"></span> {{ _('Fetch') }}</a></li>
{% endif %}
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">{{ _('Feed') }} <b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="{{ url_for("feeds.update", action="read") }}">{{ _('Mark all as read') }}</a></li>
<li role="presentation" class="divider"></li>
- <li><a accesskey="i" href="{{ url_for("inactives") }}">{{ _('Inactive') }}</a></li>
+ <li><a href="{{ url_for("inactives") }}">{{ _('Inactive') }}</a></li>
<li><a href="{{ url_for("history") }}">{{ _('History') }}</a></li>
<li><a href="{{ url_for("feeds.feeds") }}">{{ _('All') }}</a></li>
</ul>
bgstack15