diff --git a/app/views/content/show.html.erb b/app/views/content/show.html.erb index cb262b72..8198e31f 100644 --- a/app/views/content/show.html.erb +++ b/app/views/content/show.html.erb @@ -27,6 +27,17 @@
<%= render partial: 'content/display/sidelinks', locals: { content: @serialized_content } %> + + <% if user_signed_in? && current_user.can_create?(@serialized_content.raw_model.class) %> + <%= link_to new_polymorphic_path(@serialized_content.raw_model.class) do %> +
+
+ arrow_forward + Create another <%= @serialized_content.class_name.downcase %> +
+
+ <% end %> + <% end %>