kissingcomputer/app/views/articles/edit.html.erb
2026-01-10 16:17:07 +00:00

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>