diff options
Diffstat (limited to 'src/web/templates')
-rw-r--r-- | src/web/templates/layout.html | 5 | ||||
-rw-r--r-- | src/web/templates/management.html | 2 |
2 files changed, 4 insertions, 3 deletions
diff --git a/src/web/templates/layout.html b/src/web/templates/layout.html index 26cd91b7..dc62104f 100644 --- a/src/web/templates/layout.html +++ b/src/web/templates/layout.html @@ -50,7 +50,7 @@ <div><span class="glyphicon glyphicon-bookmark"></span></div> </a> <ul class="dropdown-menu"> - <li><a href="{{ url_for('bookmarks.list') }}">{{ _('Your bookmarks') }}</a></li> + <li><a href="{{ url_for('bookmarks.list_') }}">{{ _('Your bookmarks') }}</a></li> <li><a href="{{ url_for('bookmark.form') }}">{{ _('Add a new bookmark') }}</a></li> </ul> </li> @@ -114,7 +114,8 @@ </ul> </li> {% else %} - <li><a href="{{ url_for("popular") }}"><span class="glyphicon glyphicon-bookmark"></span> {{ _('Popular') }}</a></li> + <li><a href="{{ url_for("bookmarks.list_") }}"><span class="glyphicon glyphicon-bookmark"></span> {{ _('Bookmarks') }}</a></li> + <li><a href="{{ url_for("popular") }}"><span class="glyphicon glyphicon-list"></span> {{ _('Popular') }}</a></li> <li><a href="{{ url_for("about") }}"><span class="glyphicon glyphicon-question-sign"></span> {{ _('About') }}</a></li> {% endif %} </ul> diff --git a/src/web/templates/management.html b/src/web/templates/management.html index 61eafe75..62e28dbe 100644 --- a/src/web/templates/management.html +++ b/src/web/templates/management.html @@ -12,7 +12,7 @@ </div> <div class="col-md-6"> <h1>{{ _('Your bookmarks') }}</h1> - <p>{{ _('You have') }} {{ nb_bookmarks }} <a href="{{ url_for("bookmarks.list")}}">{{ _('bookmarks') }}</a>.</p> + <p>{{ _('You have') }} {{ nb_bookmarks }} <a href="{{ url_for("bookmarks.list_")}}">{{ _('bookmarks') }}</a>.</p> <a href="{{ url_for("bookmarks.delete_all") }}" class="btn btn-default" onclick="return confirm('{{ _('You are going to delete all bookmarks.') }}');">{{ _('Delete all bookmarks') }}</a> </div> </div> |