osem-fcy/app/views/admin/questions/show.html.haml

28 lines
735 B
Text
Raw Normal View History

2015-04-22 18:55:51 +03:00
.container
.row
.col-md-12
.page-header
%h1= @question.title
- @question.answers.each do |answer|
= answer.title
2025-10-20 11:36:22 +02:00
(#{answer.qanswers.find_by(question: @question)&.registrations&.where(conference: @conference)&.count || 0})
2015-04-22 18:55:51 +03:00
.row
.col-md-12
%table.datatable#question_users
2015-04-22 18:55:51 +03:00
%thead
%tr
%th Name
%th Username
%th Email
%th Answer
2015-04-22 18:55:51 +03:00
%tbody
- @registrations.each do |registration|
%tr
%td= registration.name
%td= registration.username
%td= registration.email
2025-10-20 11:34:30 +02:00
%td= registration.qanswers.find_by(question: @question)&.answer&.title