2020-04-22 02:06:48 +00:00
|
|
|
<%= render "_status.html", author: @author, note: @note %>
|
2020-04-23 02:54:46 +00:00
|
|
|
|
|
|
|
<hr>
|
|
|
|
|
|
|
|
<%= form_tag Routes.frontend_path(@conn, :post_status), method: :post do %>
|
|
|
|
<input type="hidden" name="in_reply_to" value="<%= @note["id"] %>">
|
|
|
|
<textarea id="content" name="content" cols="30" rows="10" placeholder="Reply"></textarea>
|
|
|
|
<%= submit "Post" %>
|
|
|
|
<% end %>
|