diff --git a/app/views/admin/booths/show.html.haml b/app/views/admin/booths/show.html.haml
index 02d44609..abb44449 100644
--- a/app/views/admin/booths/show.html.haml
+++ b/app/views/admin/booths/show.html.haml
@@ -47,6 +47,17 @@
= responsibles.email
)
= " , " unless i == @booth.responsibles.length - 1
+ %tr
+ %td.col-md-2
+ %b Invited Responsibles
+ %td
+ - @booth.invited_responsibles.each_with_index do |responsibles, i|
+ .responsibles
+ = link_to responsibles.name, admin_user_path(responsibles)
+ (
+ = responsibles.email
+ )
+ = " , " unless i == @booth.invited_responsibles.length - 1
%tr
%td.col-md-2
%b Submitted on
diff --git a/app/views/booths/show.html.haml b/app/views/booths/show.html.haml
index 22634b0a..dd4a1dcd 100644
--- a/app/views/booths/show.html.haml
+++ b/app/views/booths/show.html.haml
@@ -49,6 +49,18 @@
= responsibles.email
)
= ", " unless i == @booth.responsibles.length - 1
+ %tr
+ %td.col-md-2
+ %b Invited Responsibles
+ %td
+ - @booth.invited_responsibles.each_with_index do |responsibles, i|
+ .responsibles
+ = link_to responsibles.name, user_path(responsibles)
+ - if responsibles.email_public
+ (
+ = responsibles.email
+ )
+ = ", " unless i == @booth.invited_responsibles.length - 1
%tr
%td.col-md-2
%b Submitted on