Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding tooltip to awaiting data status for new adopters #1269

Merged
merged 7 commits into from
Dec 19, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions app/views/organizations/adoptable_pets/show.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,11 @@
<%= image_tag('green_check.png', height: '21') %>
<% end %>
</div>
<% if 'awaiting_data' == @adoption_application.status %>
<div class="mt-1">
<%= 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."} %>
</div>
<% 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 %>
Expand Down
Loading