Improving surveys system: showing surveys in admin UI as they will be for the user

This commit is contained in:
mdeniz 2016-06-29 17:23:01 +02:00
parent 335608e6c4
commit 03168b4efe
15 changed files with 213 additions and 46 deletions

View file

@ -21,14 +21,15 @@
- @surveys.each_with_index do |survey, index|
%tr
%td
= survey.title
= link_to survey.title, admin_conference_survey_path(@conference.short_title, survey)
%td
= survey.start_date
%td
= survey.end_date
%td
= link_to 'Edit', edit_admin_conference_survey_path(@conference.short_title, survey.id),
method: :get, class: 'btn btn-primary'
= link_to 'Delete', admin_conference_survey_path(@conference.short_title, survey.id),
method: :delete, class: 'btn btn-danger',
data: { confirm: "Do you really want to delete #{survey.title}?"}
.btn-group
= link_to 'Edit', edit_admin_conference_survey_path(@conference.short_title, survey),
class: 'btn btn-primary'
= link_to 'Delete', admin_conference_survey_path(@conference.short_title, survey),
method: :delete, class: 'btn btn-danger',
data: { confirm: "Do you really want to delete #{survey.title}?"}