dawarich/app/views/devise/registrations/_points_usage.html.erb
2025-12-30 16:57:17 +01:00

6 lines
385 B
Text

<p class="py-6">
<p class='py-2'>
You have used <%= number_with_delimiter(current_user.points_count.to_i) %> 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.to_i %>" max="<%= DawarichSettings::BASIC_PAID_PLAN_LIMIT %>"></progress>
</p>