You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
348 B
21 lines
348 B
%p#notice= notice
|
|
%p
|
|
%strong Name:
|
|
= @question_list.name
|
|
%p
|
|
%strong Description:
|
|
= @question_list.description
|
|
|
|
%p
|
|
= link_to 'Edit', edit_question_list_path(@question_list)
|
|
|
|
|
= link_to 'Back', question_lists_path
|
|
|
|
%br
|
|
%br
|
|
|
|
%p
|
|
%strong Questions:
|
|
- @question_list.questions.each do |question|
|
|
%p= link_to question.text, question
|