EvoBal/app/views/emails/show.html.erb
2021-03-04 22:28:47 +01:00

17 lines
368 B
Plaintext

<% content_for :main_header do %>
<h1>Email #</h1>
<% end %>
<%= render(FlashNoticeComponent.new) { notice } if notice.present? %>
<%= turbo_stream_from @email %>
<%= turbo_frame_tag "room" do %>
<%= render @email %>
<p>
<%= link_to 'Edit', edit_email_path(@email) %> |
<%= link_to 'Back', emails_path, "data-turbo-frame": "_top" %>
</p>
<% end %>