diff --git a/templates/admin.html b/templates/admin.html
index d873c25..248bf23 100644
--- a/templates/admin.html
+++ b/templates/admin.html
@@ -122,6 +122,7 @@
{% endif %}
{% endif %}
+ {{ post.user.username }}
{{ post.content|truncate(50) }} |
@@ -165,6 +166,7 @@
{% endif %}
{% endif %}
+ {{ f.requester.username }}
|
{% if f.receiver.profile_pic and f.receiver.profile_pic != 'default.png' %}
@@ -174,6 +176,7 @@
{% endif %}
{% endif %}
+ {{ f.receiver.username }}
|
{% if f.status == 'accepted' %}
@@ -214,6 +217,7 @@
{% endif %}
{% endif %}
+ {{ comment.user.username }}
|
{{ comment.post.id }} |
{{ comment.content|truncate(50) }} |
@@ -334,6 +338,7 @@
{% endif %}
{% endif %}
+ {{ usi.user.username }}
{{ usi.item.name }} |
@@ -364,6 +369,7 @@
{% endif %}
{% endif %}
+ {{ user.username }}
{{ user.reward_points() }} |
|