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

17 lines
504 B
Text
Raw Permalink Normal View History

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