<% title "Credits" %>
<% if flash[:notice].present? %>
<%= flash[:notice] %>
<% end %>
You have <%= @user_unspent_credits_count %> personal credits to spend
Purchase additional credits <%= render "ledger", items: @ledger[["User", current_user.id]] %>
<% if @organizations.present? %> <% @organizations.find_each do |org| %>
<%= org.name %> has <%= org.unspent_credits_count %> credits to spend
Purchase additional credits <%= render "ledger", items: @ledger[["Organization", org.id]] %>
<% end %> <% end %> <% if @user_unspent_credits_count.positive? %>

Create a Listing

Go to Listings Dashboard

<% end %>