Files
dawarich/app/views/devise/registrations/_points_usage.html.erb
2025-08-21 22:32:29 +02:00

7 lines
375 B
Plaintext

<p class="py-6">
<p class='py-2'>
You have used <%= number_with_delimiter(current_user.points_count) %> points of <%= number_with_delimiter(DawarichSettings::BASIC_PAID_PLAN_LIMIT) %> available.
</p>
<progress class="progress progress-primary w-1/2 h-5" value="<%= current_user.points_count %>" max="<%= DawarichSettings::BASIC_PAID_PLAN_LIMIT %>"></progress>
</p>