From a23bbfdf93d453228beda20be9d75a0c2853a277 Mon Sep 17 00:00:00 2001 From: baarkerlounger Date: Tue, 30 Nov 2021 13:48:06 +0000 Subject: [PATCH] Table rows --- app/views/organisations/show.html.erb | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/app/views/organisations/show.html.erb b/app/views/organisations/show.html.erb index 1174a5b10..7c892a4d6 100644 --- a/app/views/organisations/show.html.erb +++ b/app/views/organisations/show.html.erb @@ -30,7 +30,13 @@ end %> <% end %> <% @organisation.users.each do |user| %> - + <%= table.body do |body| %> + <%= body.row do |row| + row.cell(text: user.email) + row.cell(text: "Data provider") + row.cell(text: "date") + end %> + <% end %> <% end %> <% end %> <% end %>