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

16 lines
327 B
Plaintext

<div>
<%= link_to "list conversations", conversations_path %>
</div>
<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 %>