diff --git a/templates/gcp_report.html b/templates/gcp_report.html
index 668f40e..33dfb11 100644
--- a/templates/gcp_report.html
+++ b/templates/gcp_report.html
@@ -17,10 +17,10 @@
Totals by project
- {% for id, cost_month, cost_today, project in rows|group_by('id', 'cost_month', 'cost_today', 'name')|sort_by(1) %}
+ {% for id, cost_month, cost_today, project, created_by in rows|group_by('id', 'cost_month', 'cost_today', 'name', 'created_by')|sort_by(1) %}
{%- if cost_month >= cost_cutoff -%}
- {{ project }} |
+ {{ project }}{% if created_by != 'Unowned' %} ({{ created_by }}){% endif %} |
{{ cost_month|print_amount }} |
{{ cost_today|print_diff }} |