diff --git a/umap/templates/umap/navigation.html b/umap/templates/umap/navigation.html
index 139bf789..8a427f5e 100644
--- a/umap/templates/umap/navigation.html
+++ b/umap/templates/umap/navigation.html
@@ -8,7 +8,7 @@
{% if user.is_authenticated %}
- {% trans "My maps" %} ({{ user }})
- - {% trans "Starred maps" %}
+ - {% trans "Starred maps" %}
{% else %}
- {% trans "Log in" %} / {% trans "Sign in" %}
{% endif %}
diff --git a/umap/tests/test_map_views.py b/umap/tests/test_map_views.py
index 426e42a4..59e7b92c 100644
--- a/umap/tests/test_map_views.py
+++ b/umap/tests/test_map_views.py
@@ -569,6 +569,13 @@ def test_user_can_see_their_star(client, map, user):
assert map.name in response.content.decode()
+def test_stars_link(client, map, user):
+ client.login(username=user.username, password="123123")
+ response = client.get(reverse("home"))
+ assert response.status_code == 200
+ assert "/user/Joe/stars" in response.content.decode()
+
+
@pytest.mark.usefixtures("allow_anonymous")
def test_cannot_send_link_on_owned_map(client, map):
assert len(mail.outbox) == 0