Files
fizzy/app/views/workflows/edit.html.erb
T
2024-10-21 15:33:30 -06:00

18 lines
779 B
Plaintext

<%= turbo_frame_tag dom_id(@workflow, :header) do %>
<%= form_with model: @workflow, url: account_workflow_path(@workflow) do |form| %>
<div class="flex pad gap justify-space-between">
<%= form.text_field :name, required: true, autofocus: true %>
<div class="flex gap">
<%= form.button type: :submit, class: "btn btn--small" do %>
<%= image_tag "check.svg", aria: { hidden: true }, size: 24 %>
<% end %>
<%= link_to account_workflow_path(@workflow), class: "btn btn--small", data: { turbo_frame: dom_id(@workflow), turbo_confirm: "Are you sure you want to delete this workflow?" } do %>
<%= image_tag "remove.svg", aria: { hidden: true }, size: 24 %>
<% end %>
</div>
</div>
<% end %>
<% end %>