diff --git a/app/views/invitations/index.html.erb b/app/views/invitations/index.html.erb
index c38b98d..a35d313 100644
--- a/app/views/invitations/index.html.erb
+++ b/app/views/invitations/index.html.erb
@@ -24,23 +24,25 @@
<% if @invitations_used.any? %>
-
Accepted Invitations
-
-
-
- URL |
- Accepted |
- Invited user |
-
-
-
- <% @invitations_used.each do |invitation| %>
+
+ Accepted Invitations
+
+
- <%= invitation_url(invitation.token) %> |
- <%= invitation.used_at.strftime("%Y-%m-%d") %> |
- <%= User.find(invitation.invited_user_id).address %> |
+ URL |
+ Accepted |
+ Invited user |
- <% end %>
-
-
+
+
+ <% @invitations_used.each do |invitation| %>
+
+ <%= invitation_url(invitation.token) %> |
+ <%= invitation.used_at.strftime("%Y-%m-%d") %> |
+ <%= User.find(invitation.invited_user_id).address %> |
+
+ <% end %>
+
+
+
<% end %>