mirror of
https://github.com/wallabag/wallabag.git
synced 2024-10-31 22:28:54 +00:00
fixed #128: back to home after mark a link as read is fixed
This commit is contained in:
parent
5bf30b0060
commit
82051a6a6a
1 changed files with 2 additions and 2 deletions
|
@ -5,7 +5,7 @@
|
|||
<div class="tools">
|
||||
<ul class="tools">
|
||||
<li>
|
||||
<li><a href="{{ referer }}" title="{% trans "back to home" %}" class="tool back"><span></span></a></li>
|
||||
<li><a href="./" title="{% trans "back to home" %}" class="tool back"><span></span></a></li>
|
||||
<a title="{% trans "toggle mark as read" %}" class="tool archive {% if entry.is_read == 0 %}archive-off{% endif %}" href="./?action=toggle_archive&id={{ entry.id|e }}"><span></span></a></li>
|
||||
<li><a title="{% trans "toggle favorite" %}" class="tool fav {% if entry.is_fav == 0 %}fav-off{% endif %}" href="./?action=toggle_fav&id={{ entry.id|e }}"><span></span></a></li>
|
||||
<li><a title="{% trans "delete" %}" class="tool delete" href="./?action=delete&id={{ entry.id|e }}"><span></span></a></li>
|
||||
|
@ -25,7 +25,7 @@
|
|||
<div class="tools">
|
||||
<ul class="tools">
|
||||
<li>
|
||||
<li><a href="{{ referer }}" title="{% trans "back to home" %}" class="tool back"><span></span></a></li>
|
||||
<li><a href="./?" title="{% trans "back to home" %}" class="tool back"><span></span></a></li>
|
||||
<li><a href="#top" title="{% trans "back to top" %}" class="tool top"><span></span></a></li>
|
||||
<a title="{% trans "toggle mark as read" %}" class="tool archive {% if entry.is_read == 0 %}archive-off{% endif %}" href="./?action=toggle_archive&id={{ entry.id|e }}"><span></span></a></li>
|
||||
<li><a title="{% trans "toggle favorite" %}" class="tool fav {% if entry.is_fav == 0 %}fav-off{% endif %}" href="./?action=toggle_fav&id={{ entry.id|e }}"><span></span></a></li>
|
||||
|
|
Loading…
Reference in a new issue