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

remove / #1212

Merged
merged 1 commit into from
Dec 6, 2024
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion app/views/adoption_mailer/new_adoption.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<body>
<h1>Congrats on <%= @pet.name %>'s adoption!</h1>

<p>To view <%= @pet.name %>'s tasks and downloadable files, please go to your <%= link_to "Adopted Pets", adopter_fosterer_adopted_pets_url(script_name: "/#{@organization.slug}"), target: "_blank" %> page.</p>
<p>To view <%= @pet.name %>'s tasks and downloadable files, please go to your <%= link_to "Adopted Pets", adopter_fosterer_adopted_pets_url(script_name: "#{@organization.slug}"), target: "_blank" %> page.</p>

<p>Have a great day!</p>

Expand Down
2 changes: 1 addition & 1 deletion app/views/foster_mailer/new_foster.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<h4>Foster Start Date: <%= @foster.start_date.strftime("%Y-%m-%d") %></h4>
<h4>Foster End Date: <%= @foster.end_date.strftime("%Y-%m-%d") %></h4>

<p>To view <%= @pet.name %>'s tasks and downloadable files, please go to your <%= link_to "Fostered Pets", adopter_fosterer_fostered_pets_url(script_name: "/#{@organization.slug}"), target: "_blank" %> page.</p>
<p>To view <%= @pet.name %>'s tasks and downloadable files, please go to your <%= link_to "Fostered Pets", adopter_fosterer_fostered_pets_url(script_name: "#{@organization.slug}"), target: "_blank" %> page.</p>

<strong>Please do not reply directly to this email. You must contact <%= @organization.name %> directly at <a href="mailto:<%= @organization.email %>"><%= @organization.email %></a></strong>
</body>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<h1><%= @user.first_name %>, thank you for registering <%= @organization.name %> with Homeward Tails</h1>

<p>
You can access your site at: <%= link_to "#{root_url}#{@organization.slug}", home_index_url(script_name: "/#{@organization.slug}"), target: "_blank" %>
You can access your site at: <%= link_to "#{root_url}#{@organization.slug}", home_index_url(script_name: "#{@organization.slug}"), target: "_blank" %>
</p>

<p>
Expand All @@ -23,7 +23,7 @@
</p>

<p>
<%= link_to "Log-in", new_user_session_url(script_name: "/#{@organization.slug}"), target: "_blank" %>
<%= link_to "Log-in", new_user_session_url(script_name: "#{@organization.slug}"), target: "_blank" %>
</p>

<strong>Homeward Tails Team</strong>
Expand Down
2 changes: 1 addition & 1 deletion app/views/sign_up_mailer/adopter_welcome_email.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
</ol>

<strong>Still have questions?</strong>
<p>Check out the <%= link_to "FAQ page", faq_index_url(script_name: "/#{@organization.slug}"), target: "_blank" %>.</p>
<p>Check out the <%= link_to "FAQ page", faq_index_url(script_name: "#{@organization.slug}"), target: "_blank" %>.</p>
<p>Again, thank you for signing up! People like you help these pets live their best life.</p>

<strong>- <%= @organization.name %> Team</strong>
Expand Down
Loading