19 lines
617 B
Text
19 lines
617 B
Text
|
|
<!--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-->
|