otwarchive-symphonyarchive/app/views/prompts/edit.html.erb

19 lines
617 B
Text
Raw Normal View History

2026-03-11 22:22:11 +00:00
<!--Descriptive page name, messages and instructions-->
<h2><%= ts("Edit Prompt") %></h2>
<!--/descriptions-->
<!--subnav-->
<% if @prompt.challenge_signup %>
<%= render "prompt_navigation" %>
<% end %>
<!--/subnav-->
<!--main content-->
<%= form_for @prompt, :as => :prompt, :url => collection_prompt_path(@collection, @prompt), :html => {:method => :put} do |form| %>
<p class="required notice"><%= ts("* Required information") %></p>
<%= error_messages_for @prompt %>
<%= render "prompt_form", :form => form, :required => true, :index => @index %>
<%= submit_fieldset form %>
<% end %>
<!--/content-->