frenzy/lib/frenzy_web/templates/pipeline/edit.html.eex

10 lines
374 B
Elixir

<h2>Pipeline Stage</h2>
<h3>Feed: <%= @feed.title %></h3>
<h3>Module: <code><%= @stage.module_name %></code></h3>
<%= form_for @changeset, Routes.pipeline_path(@conn, :update, @feed.id, @stage.id), fn f -> %>
<%= textarea f, :options, class: "form-control", rows: 15, style: "font-family: monospace;" %>
<%= submit "Update", class: "btn btn-primary mt-2" %>
<% end %>