aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2016-10-03 08:54:44 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2016-10-03 08:54:44 +0200
commitd837af3b71766fcde886ceabea4943fca4d9121d (patch)
tree34fce044010dd122f590c4b90a70ae6fbd684f02 /src
parenttest (diff)
downloadnewspipe-d837af3b71766fcde886ceabea4943fca4d9121d.tar.gz
newspipe-d837af3b71766fcde886ceabea4943fca4d9121d.tar.bz2
newspipe-d837af3b71766fcde886ceabea4943fca4d9121d.zip
Removed duplicate glyphicon.
Diffstat (limited to 'src')
-rw-r--r--src/web/templates/layout.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/web/templates/layout.html b/src/web/templates/layout.html
index 5c9eeb76..804ec5d6 100644
--- a/src/web/templates/layout.html
+++ b/src/web/templates/layout.html
@@ -92,7 +92,7 @@
</a>
<ul class="dropdown-menu">
<li><a href="{{ url_for("user.profile") }}"><span class="glyphicon glyphicon-user"></span> {{ _('Profile') }}</a></li>
- <li><a href="{{ url_for("user.management") }}"><span class="glyphicon glyphicon-user"></span> {{ _('Your data') }}</a></li>
+ <li><a href="{{ url_for("user.management") }}"><span class="glyphicon glyphicon-hdd"></span> {{ _('Your data') }}</a></li>
<li><a href="{{ url_for("about") }}"><span class="glyphicon glyphicon-question-sign"></span> {{ _('About') }}</a></li>
{% if current_user.is_admin %}
<li role="presentation" class="divider"></li>
bgstack15