diff --git a/templates/watchlist/index.html b/templates/watchlist/index.html
index 2b360d5..097ca33 100644
--- a/templates/watchlist/index.html
+++ b/templates/watchlist/index.html
@@ -4,7 +4,7 @@
Watchlist
{% for movie in object_list %}
- - {{movie.name}} — {{movie.score}}
+ - {{movie.name}}{% if movie in voted_movies %}*{% endif %} — {{movie.score}}
{% endfor %}
{% if can_add_movie %}
diff --git a/watchlist/views.py b/watchlist/views.py
index 1defc5e..2a52170 100644
--- a/watchlist/views.py
+++ b/watchlist/views.py
@@ -44,6 +44,7 @@ class IndexView(generic.ListView):
def get_context_data(self):
context = super().get_context_data()
context['can_add_movie'] = self.request.user.has_perm("watchlist.add_movie")
+ context['voted_movies'] = models.Movie.objects.filter(movievote__user=self.request.user)
return context
class DetailView(generic.DetailView):