diff --git a/src/economy/templates/includes/expense_detail_panel.html b/src/economy/templates/includes/expense_detail_panel.html
index 85133171..d83adb44 100644
--- a/src/economy/templates/includes/expense_detail_panel.html
+++ b/src/economy/templates/includes/expense_detail_panel.html
@@ -2,6 +2,10 @@
Expense Details for {{ expense.pk }}
+
+ Created By |
+ {{ expense.user }} |
+
Amount |
{{ expense.amount }} DKK |
diff --git a/src/economy/templates/includes/expense_list_panel.html b/src/economy/templates/includes/expense_list_panel.html
index 0617a549..aca86383 100644
--- a/src/economy/templates/includes/expense_list_panel.html
+++ b/src/economy/templates/includes/expense_list_panel.html
@@ -2,6 +2,7 @@
+ Created By |
{% if not reimbursement %}
Paid by |
{% endif %}
@@ -19,6 +20,7 @@
{% for expense in expense_list %}
+ {{ expense.user }} |
{% if not reimbursement %}
{% if expense.paid_by_bornhack %}BornHack{% else %}{{ expense.user }}{% endif %} |
{% endif %}
diff --git a/src/economy/templates/includes/revenue_detail_panel.html b/src/economy/templates/includes/revenue_detail_panel.html
index 7fac5fea..88ceb857 100644
--- a/src/economy/templates/includes/revenue_detail_panel.html
+++ b/src/economy/templates/includes/revenue_detail_panel.html
@@ -2,6 +2,10 @@
Revenue Details for {{ revenue.pk }}
+
+ Created By |
+ {{ revenue.user }} |
+
Amount |
{{ revenue.amount }} DKK |
diff --git a/src/economy/templates/includes/revenue_list_panel.html b/src/economy/templates/includes/revenue_list_panel.html
index 1199efaf..a2165ac1 100644
--- a/src/economy/templates/includes/revenue_list_panel.html
+++ b/src/economy/templates/includes/revenue_list_panel.html
@@ -2,6 +2,7 @@
+ Created By |
Amount |
Invoice Date |
Description |
@@ -13,6 +14,7 @@
{% for revenue in revenue_list %}
+ {{ revenue.user }} |
{{ revenue.amount }} DKK |
{{ revenue.invoice_date }} |
{{ revenue.description }} |