Sha256: 99b109861ca5b3460886e54e938347739df6f9e9afddbead919681b0bacf1093

Contents?: true

Size: 972 Bytes

Versions: 9

Compression:

Stored size: 972 Bytes

Contents

= render 'progressbar' if @version.settings && @version.settings[:display_progressbar] == "1"
#survey_content
  h1.survey_title
    = @version.survey_detail.title
  fieldset id="#{dom_id @question_group}"
    legend= @question_group.title
    = simple_form_for(@session, url: helena.session_path(@session.token), as: :session) do |f|
      - @questions.each do |question|
        = render "#{question.class.to_s.underscore}", form: f, question: question, answers: @answers, errors: @errors

      = hidden_field_tag :question_group, @question_group.id

      - if @question_group.previous_items.any? && @question_group.allow_to_go_back?
        = link_to t('.back'), edit_session_path(@session.token, question_group: @question_group.previous_item), class: 'btn btn-default'

      = f.submit class: 'btn btn-success pull-right', value: @question_group.last? ? t('.save') : t('.next')

    = t('shared.required') if @questions.map{ |question| question.try :required }.any?

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
helena-1.3.1 app/views/helena/sessions/edit.html.slim
helena-1.3.0 app/views/helena/sessions/edit.html.slim
helena-1.1.0 app/views/helena/sessions/edit.html.slim
helena-1.0.3 app/views/helena/sessions/edit.html.slim
helena-1.0.2 app/views/helena/sessions/edit.html.slim
helena-1.0.1 app/views/helena/sessions/edit.html.slim
helena-1.0.0.rc4 app/views/helena/sessions/edit.html.slim
helena-1.0.0.rc3 app/views/helena/sessions/edit.html.slim
helena-1.0.0.rc2 app/views/helena/sessions/edit.html.slim