<% content_for :title, "Subscriptions" %>
<%= render 'settings/navigation' %>

Hello there!

<% if current_user.active_until&.future? %>

You are currently subscribed to Dawarich, hurray!

Your subscription will be valid for the next <%= days_left(current_user.active_until) %>.

<%= link_to 'Manage subscription', "#{MANAGER_URL}/auth/dawarich?token=#{current_user.generate_subscription_token}", class: 'btn btn-primary my-4' %> <% else %>

You are currently not subscribed to Dawarich. How about we fix that?

<%= link_to 'Manage subscription', "#{MANAGER_URL}/auth/dawarich?token=#{current_user.generate_subscription_token}", class: 'btn btn-primary my-4' %> <% end %>