Sha256: 0e3cd4d0893cd576da0ae87972e68eeade66531272bc46f43486896e3eb4eeab
Contents?: true
Size: 1.29 KB
Versions: 1
Compression:
Stored size: 1.29 KB
Contents
<% page_dom = 'submit_page' next_js = load_page_js(@next_page) -%> <div id="<%= page_dom %>" class="answer-page"> <!-- this id is parsed by public.js --> <h2>Submit Application</h2> <div id="page-preview"> <div class="page"> <%= form_tag fe_application_submit_page_path(@application), :id => "#{page_dom}-form", :onsubmit => "page_handler.validateAll(); return false;" do -%> <div id="submit_app"> <% if @application.frozen? -%> <p><%= _('You have already submitted this application.') %></p> <% else -%> <p><%= _('If you are sure you are finished with the application, click "Submit Application". ' \ 'After you submit your application, you will not be able to edit your answers in your ' \ 'application, but you will be able to change your your personal information, your ' \ 'school information, and your reference information as necessary.') %></p> <div id="application_errors"> <%= render :partial => "errors"%> </div> <%= hidden_field_tag "submit_to", submit_fe_application_submit_page_path(@application) %> <div id="submit_message" class="validation-advice" style="display: none;"></div> <p class="buttons"><%= submit_tag(_('Submit Application')) %></p> <% end -%> </div> <% end -%> </div> </div> </div>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fe-1.0.0 | app/views/fe/submit_pages/edit.html.erb |