osem-fcy/app/views/surveys/show.html.haml
2022-05-18 06:33:47 +02:00

28 lines
1.2 KiB
Text

.row
.col-md-10.col-md-offset-1
.page-header
%h1
Survey #{@survey.title}
- if can? :edit, @survey
= link_to 'Edit Survey', admin_conference_survey_path(@conference.short_title, @survey), class: 'btn btn-primary pull-right'
%p.text-muted
From:
= @survey.start_date
to
= @survey.end_date
- unless @survey.active?
%label
%i.fa-solid.fa-circle-exclamation
This survey does not accept replies at this monent.
.row
.col-md-12
= form_for(@survey_submission, url: reply_conference_survey_path(@conference.short_title, @survey)) do |f|
- @survey.survey_questions.each.with_index(1) do |survey_question, question_index|
.row
.col-md-10.col-md-offset-1
- survey_reply = survey_question.survey_replies.find_by(user: current_user) || SurveyReply.new(survey_question_id: survey_question.id, user: current_user)
= render partial: 'admin/surveys/survey_question', locals: { survey_question: survey_question, question_index: question_index, survey_reply: survey_reply }
.row
.col-md-10.col-md-offset-1
= f.submit 'Submit', class: 'btn btn-primary pull-right', disabled: !(can? :reply, @survey)