diff --git a/app/views/steps/_display_step_with_ingredients.html.erb b/app/views/steps/_display_step_with_ingredients.html.erb
new file mode 100644
index 00000000..cd8d218e
--- /dev/null
+++ b/app/views/steps/_display_step_with_ingredients.html.erb
@@ -0,0 +1,25 @@
+
+
+ <% if step.has_measurements? %>
+
+ <% step.measurements.each do |measurement| %>
+ - <%= measurement.amount %> <%= link_to measurement.ingredient.name, ingredient_path(measurement.ingredient) %>
+ <% end %>
+
+ <% end %>
+
+ <%= step.directions %>
+ <% if recipe.owner?(session[:user_id]) && params[:recipe_id].nil? %>
+
+ -
+ <%= link_to "Edit Step", edit_recipe_step_path(recipe, step), class: "btn btn-default" %>
+
+ -
+ <%= button_to "Delete Step", recipe_step_path(recipe, step),
+ method: :delete, data: { confirm: "Are you 100% sure you want to delete this step? The associated ingredients will also be removed from the recipe!" },
+ class: "btn btn-danger" %>
+
+
+ <% end %>
+
+