<%= link_to "Back to post types", post_types_path %>
<%= ajax_link "Add a new #{@post_type.name.singularize} Post", new_post_path(post_type_id: params[:post_type_id]), {}, '#new_post' %>
<% @posts.each do |post| %>
<%= render partial: 'show_wrapper', locals: {post: post} %>
<% end %>