<% content_for :page_heading do %>

<%= t('.comments_for_html', title: @article.title) %>

<% end %> <%= form_tag({ action: 'bulkops' }, { class: 'form-inline' }) do %> <%= hidden_field 'article_id', @article.id %> <%= render 'button', position: 'top' %>
<% if @feedback.empty? %> <% end %> <% @feedback.each do |comment| %> <%= render 'feedback', comment: comment %> <% end %>
<%= t('.select_all') %>
<%= t('.no_feedback') %>
<% end %> <%= form_tag action: 'create' do %> <%= hidden_field_tag('article_id', @article.id) %>
<%= t('.add_a_comment') %>
<%= text_field 'comment', 'author', class: 'form-control' %>
<%= text_field 'comment', 'email', class: 'form-control' %>
<%= text_field 'comment', 'url', class: 'form-control' %>
<%= text_area 'comment', 'body', rows: '10', class: 'form-control' %>
<%= t('.action_or_other_html', first_action: link_to(t('.cancel'), action: 'index'), second_action: submit_tag(t('.save'), class: 'btn btn-primary')) %>
<% end %>