klaay-chatbot/app/views/conversations/show.html.erb

20 lines
463 B
Plaintext

<div>
<%= link_to "list conversations", conversations_path %>
</div>
<%= form_with url: conversation_path(@conversation), method: :delete do |form| %>
<%= form.submit "delete conversation" %>
<% end %>
<ul>
<% @messages.each do |message| %>
<li><%= message.body %></li>
<% end %>
</ul>
<%= form_with model: @prompt do |form| %>
<%= form.text_area :body %>
<%= form.hidden_field :conversation_id %>
<%= form.submit "send message" %>
<% end %>