dawarich/app/views/devise/registrations/_points_usage.html.erb

7 lines
391 B
Text
Raw Normal View History

2025-05-16 12:51:48 -04:00
<p class="py-6">
<p class='py-2'>
2025-07-16 16:22:33 -04:00
You have used <%= number_with_delimiter(current_user.tracked_points.count) %> points of <%= number_with_delimiter(DawarichSettings::BASIC_PAID_PLAN_LIMIT) %> available.
2025-05-16 12:51:48 -04:00
</p>
2025-07-16 16:22:33 -04:00
<progress class="progress progress-primary w-1/2 h-5" value="<%= current_user.tracked_points.count %>" max="<%= DawarichSettings::BASIC_PAID_PLAN_LIMIT %>"></progress>
2025-05-16 12:51:48 -04:00
</p>