diff --git a/app/views/admin/invitations/index.html.erb b/app/views/admin/invitations/index.html.erb
index 584188e..4bad1fb 100644
--- a/app/views/admin/invitations/index.html.erb
+++ b/app/views/admin/invitations/index.html.erb
@@ -17,6 +17,7 @@
Token |
Accepted |
+ Inviter |
Invited user |
@@ -24,7 +25,8 @@
<% @invitations_used.each do |invitation| %>
<%= invitation.token %> |
- <%= invitation.used_at.strftime("%Y-%m-%d") %> |
+ <%= invitation.used_at.strftime("%Y-%m-%d (%H:%M UTC)") %> |
+ <%= invitation.user.address %> |
<%= User.find(invitation.invited_user_id).address %> |
<% end %>