28 lines
617 B
Text
28 lines
617 B
Text
<section class="articleshow">
|
|
<%= link_to 'Back', articles_path %>
|
|
<%= form_with(model: @article, local: true) do |form| %>
|
|
<%= form.label :icon_image, style: "display: block" %>
|
|
<%= form.file_field :icon_image, accept: "image/*" %>
|
|
<p>
|
|
<%= form.label :title %><br>
|
|
<%= form.text_field :title %>
|
|
</p>
|
|
|
|
<p>
|
|
<%= form.label :text %><br>
|
|
<%= form.rich_textarea :text %>
|
|
</p>
|
|
<p>
|
|
<%= form.label :mood %><br>
|
|
<%= form.rich_textarea :mood %>
|
|
</p>
|
|
<p>
|
|
<%= form.label :music %><br>
|
|
<%= form.rich_textarea :music %>
|
|
</p>
|
|
<p>
|
|
<%= form.submit %>
|
|
</p>
|
|
|
|
<% end %>
|
|
</section>
|