diff --git a/app/views/admin/legislation/questions/index.html.erb b/app/views/admin/legislation/questions/index.html.erb index 77f6341ce..7593750e7 100644 --- a/app/views/admin/legislation/questions/index.html.erb +++ b/app/views/admin/legislation/questions/index.html.erb @@ -33,13 +33,11 @@ <%= link_to question.title, edit_admin_legislation_process_question_path(@process, question) %> - <%= content_tag :ul do %> + <%= question.answers_count %> <%= link_to question.comments.count, legislation_process_question_path(@process, question, anchor: "comments") %> diff --git a/app/views/legislation/questions/show.html.erb b/app/views/legislation/questions/show.html.erb index adad8e24b..e8bd1a4f0 100644 --- a/app/views/legislation/questions/show.html.erb +++ b/app/views/legislation/questions/show.html.erb @@ -11,17 +11,17 @@
<% if @question.next_question_id %> <%= link_to legislation_process_question_path(@process, @question.next_question_id), class: "quiz-next-link" do %> - <%= content_tag :div, class: "quiz-next" do %> +
<%= t(".next_question") %>
<% end %> <% elsif @question.first_question_id %> <%= link_to legislation_process_question_path(@process, @question.first_question_id), class: "quiz-next-link" do %> - <%= content_tag :div, class: "quiz-next" do %> +
<%= t(".first_question") %>
<% end %> <% end %>