Sha256: de1b2a08e5449e098b7819f915bc4b55e1c25d10f37b4682d81c74ac2899f0ca
Contents?: true
Size: 577 Bytes
Versions: 3
Compression:
Stored size: 577 Bytes
Contents
<h3><%= survey.new_record? ? "New Survey" : "Edit Survey" %></h3> <%= form_for survey do |f| %> <%- if survey.errors.any? %> <ul> <%- survey.errors.full_messages.each do |message| %> <li><%= message %></li> <% end %> </ul> <% end %> <div class="form-group"> <%= f.label :name %> <%= f.text_field :name %> </div> <div class="form-group"> <%= f.label :introduction %> <%= f.text_area :introduction %> </div> <%= f.label :after_survey_content %> <%= f.text_area :after_survey_content %> <%= f.submit %> <% end %>
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
rapidfire-8.0.0 | app/views/rapidfire/surveys/_form.html.erb |
rapidfire-5.0.0 | app/views/rapidfire/surveys/_form.html.erb |
rapidfire-4.0.0 | app/views/rapidfire/surveys/_form.html.erb |