From b7b43b56debe3cd747f51c10166114299d242f94 Mon Sep 17 00:00:00 2001 From: Aidan Cornelius-Bell Date: Thu, 10 Oct 2024 09:57:18 +1030 Subject: [PATCH] Minor tweaks to profile page. --- app/views/devise/registrations/edit.html.erb | 11 +++-------- .../images => views/subscription_mailer}/.DS_Store | Bin 2 files changed, 3 insertions(+), 8 deletions(-) copy app/{assets/images => views/subscription_mailer}/.DS_Store (100%) diff --git a/app/views/devise/registrations/edit.html.erb b/app/views/devise/registrations/edit.html.erb index 91debf6..9022fda 100644 --- a/app/views/devise/registrations/edit.html.erb +++ b/app/views/devise/registrations/edit.html.erb @@ -5,21 +5,16 @@ <% if current_user %> <% if current_user.ongoing_subscriber? %> -

Thank you for your ongoing support!

+

Thank you for your <%= link_to "ongoing support", subscriptions_path %>!

<% elsif current_user.one_time_donor? %> -

Thank you for your one-time donation!

+

Thank you for your <%= link_to "one-time donation", subscriptions_path %>!

<% elsif current_user.non_financial_supporter? %>

Thank you for your non-financial support!

<% else %> -

Consider supporting mind reader to access premium features!

+

Consider <%= link_to "supporting mind reader", subscriptions_path %> to access extra features.

<% end %> <% end %> - -

Are you looking to get emails with new dispatches? You still need to register and confirm your email by following instructions here.

- -

On this page below you can modify your registration.

-
<%= form_for(resource, as: resource_name, url: registration_path(resource_name), html: { method: :put }) do |f| %> diff --git a/app/assets/images/.DS_Store b/app/views/subscription_mailer/.DS_Store similarity index 100% copy from app/assets/images/.DS_Store copy to app/views/subscription_mailer/.DS_Store -- 2.39.5