diff --git a/LandingPage/templates/base.html b/LandingPage/templates/base.html
index 44580b1..8026219 100644
--- a/LandingPage/templates/base.html
+++ b/LandingPage/templates/base.html
@@ -21,6 +21,7 @@
Episodes.Community
{% if user.is_authenticated %}
+ {% if user.is_staff %}
{% endif %}
{{ user.display_name }}
{% else %}
Log in
diff --git a/Show/templates/episode.html b/Show/templates/episode.html
index 3bc5b27..92eed67 100644
--- a/Show/templates/episode.html
+++ b/Show/templates/episode.html
@@ -70,7 +70,14 @@
-
Submitted {{sbm.timestamp}} by {{sbm.user.display_name}}·
+ {% get_obj_perms sbm.user for show as "publisher_perms" %}
+
Submitted {{sbm.timestamp}} by
+ {% if sbm.user.is_staff or "can_moderate_show" in publisher_perms %}
+
+ {% endif %}
+ {{sbm.user.display_name}}
+
+
·
{% if "can_moderate_show" in show_perms %}
Change
{% else %}