<%= render :partial => 'form', :locals => { edit: true, type: @type } %>
<% if @category.posts.size > 0 %>

Articles in <%= @type.capitalize %>

    <% @category.posts.each do |f| %>
  • <%= link_to edit_admin_article_path(f) do %> <%= f.post_title %> <% end %>
    <%= link_to edit_admin_article_path(f), :class => 'btn btn-xs btn-default' do %> <% end %> <%= link_to page_path(f), :class => 'btn btn-xs btn-default', :target => "_blank" do %> <% end %>
  • <% end %>
<% end %>