Sha256: adf664d72595af09a27f759d41e655566187e7012ec80b1f3d8f4713fbe98849
Contents?: true
Size: 735 Bytes
Versions: 14
Compression:
Stored size: 735 Bytes
Contents
<h1>Profile Questions</h1> <div class="btn-toolbar" role="toolbar"> <%= link_to "Back", group_path(@group), class: "btn btn-default" %> <%= link_to "New", new_group_social_networking_profile_question_url(@group), class: "btn btn-default" %> </div> <table class="table"> <tr> <th>Question Text</th> <th colspan="2"></th> </tr> <% @profile_questions.each do |profile_question| %> <tr> <td><%= profile_question.question_text %></td> <td><%= link_to "edit", edit_group_social_networking_profile_question_path(@group, profile_question) %></td> <td><%= link_to 'delete', group_social_networking_profile_question_path(@group, profile_question), method: :delete %></td> </tr> <% end %> </table>
Version data entries
14 entries across 14 versions & 1 rubygems