diff --git a/templates/zephyr/activity.html b/templates/zephyr/activity.html
index 59fd99af77..7ba75fa84a 100644
--- a/templates/zephyr/activity.html
+++ b/templates/zephyr/activity.html
@@ -43,7 +43,7 @@
{% for email, row in activity.sorted_rows %}
| {{ row.full_name }} |
- {{ email }} |
+ {{ row.short_name }} |
{{ row.realm }} |
{{ row.get_updates_last }} |
{{ row.send_message_last }} |
diff --git a/zephyr/views.py b/zephyr/views.py
index 889e2178a2..f9fe96ebc8 100644
--- a/zephyr/views.py
+++ b/zephyr/views.py
@@ -1160,6 +1160,7 @@ class ActivityTable(object):
row = self.rows.setdefault(record.user_profile.user.email, {})
row['realm'] = record.user_profile.realm.domain
row['full_name'] = record.user_profile.full_name
+ row['short_name'] = record.user_profile.short_name
row[query_name + '_count'] = record.count
row[query_name + '_last' ] = record.last_visit