diff --git a/app/templates/macros/todo.html b/app/templates/macros/todo.html
index d744c7f0..9b859b2c 100644
--- a/app/templates/macros/todo.html
+++ b/app/templates/macros/todo.html
@@ -1,4 +1,4 @@
-{% macro render_outdated_packages(outdated_packages) -%}
+{% macro render_outdated_packages(outdated_packages, current_player) -%}
{% for package in outdated_packages %}
{% set config = package.update_config %}
@@ -30,21 +30,25 @@
diff --git a/app/templates/todo/outdated.html b/app/templates/todo/outdated.html
index 7b202565..5480fadd 100644
--- a/app/templates/todo/outdated.html
+++ b/app/templates/todo/outdated.html
@@ -18,5 +18,5 @@
{% from "macros/todo.html" import render_outdated_packages %}
- {{ render_outdated_packages(outdated_packages) }}
+ {{ render_outdated_packages(outdated_packages, current_user) }}
{% endblock %}
diff --git a/app/templates/todo/user.html b/app/templates/todo/user.html
index fb98c669..4b3e03f9 100644
--- a/app/templates/todo/user.html
+++ b/app/templates/todo/user.html
@@ -43,7 +43,7 @@
{% endif %}
{% from "macros/todo.html" import render_outdated_packages %}
- {{ render_outdated_packages(outdated_packages) }}
+ {{ render_outdated_packages(outdated_packages, current_user) }}
{{ _("Unadded Topics") }}