Skip to content

Commit

Permalink
update suggestion form for talk
Browse files Browse the repository at this point in the history
  • Loading branch information
adrienpoly committed Sep 16, 2024
1 parent 940d9cc commit 6578f49
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion app/views/talks/_form.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,20 @@

<div class="my-5">
<%= form.label :description %>
<%= form.text_area :description, rows: 4, class: "input input-bordered w-full" %>
<%= form.text_area :description, rows: 4, class: "textarea textarea-bordered w-full" %>
</div>

<div class="my-5">
<%= form.label :date %>
<%= form.text_field :date, class: "input input-bordered w-full" %>
</div>

<div class="my-5">
<%= form.label :summary %>
<div class="text-sm font-light mb-2">Markdown supported</div>
<%= form.text_area :summary, rows: 10, class: "textarea textarea-bordered w-full" %>
</div>

<div class="inline">
<%= ui_button "Suggest modifications", type: :submit %>
<%= ui_button "Cancel", url: talk_path(talk), outline: true, role: :button %>
Expand Down

0 comments on commit 6578f49

Please sign in to comment.