From 9ddd36c4144bd015df1e01451a2a5209b8f30fd7 Mon Sep 17 00:00:00 2001 From: Sebastian Kippe Date: Sun, 27 Dec 2020 14:21:16 +0100 Subject: [PATCH] Add missing section markup --- app/views/invitations/index.html.erb | 36 +++++++++++++++------------- 1 file changed, 19 insertions(+), 17 deletions(-) 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

- - - - - - - - - - <% @invitations_used.each do |invitation| %> +
+

Accepted Invitations

+
URLAcceptedInvited user
+ - - - + + + - <% end %> - -
<%= invitation_url(invitation.token) %><%= invitation.used_at.strftime("%Y-%m-%d") %><%= User.find(invitation.invited_user_id).address %>URLAcceptedInvited user
+ + + <% @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 %>