diff --git a/app/views/organizations/adoptable_pets/show.html.erb b/app/views/organizations/adoptable_pets/show.html.erb
index be807cd85..7e173f1f4 100644
--- a/app/views/organizations/adoptable_pets/show.html.erb
+++ b/app/views/organizations/adoptable_pets/show.html.erb
@@ -156,6 +156,11 @@
<%= image_tag('green_check.png', height: '21') %>
<% end %>
+ <% if 'awaiting_data' == @adoption_application.status %>
+
+ <%= render partial: "shared/empty_state", locals: {text: "Please make sure you fill out the adoption questionnaire so staff have enough information to process your application."} %>
+
+ <% end %>
<% elsif allowed_to?(:manage?, @pet) %>
<%= link_to "Manage #{@pet.name}", staff_pet_path(@pet) %>
<%# FIXME: This section was missed during the remove of AdopterFosterProfile but I think it requires FormSubmission to be ready to refactor %>