29 lines
1.1 KiB
Plaintext
29 lines
1.1 KiB
Plaintext
<span class="total-amount">
|
|
<%= format_price(@budget, @budget.heading_price(@heading)) %>
|
|
</span>
|
|
|
|
<div class="progress" role="progressbar" tabindex="0"
|
|
aria-valuenow="0" aria-valuemin="0" aria-valuemax="100">
|
|
<div class="progress-meter"
|
|
style="width:
|
|
<%= progress_bar_width(@budget.heading_price(@heading),
|
|
@ballot.amount_spent(@heading.id)) %>">
|
|
</div>
|
|
</div>
|
|
|
|
<div class="progress spent-amount-progress" role="progressbar" tabindex="0"
|
|
aria-valuenow="20" aria-valuemin="0" aria-valuetext="25 percent" aria-valuemax="100">
|
|
<span class="progress-meter spent-amount-meter"
|
|
style="width:
|
|
<%= progress_bar_width(@budget.heading_price(@heading),
|
|
@ballot.amount_spent(@heading.id)) %>">
|
|
<p id="amount-spent" class="progress-meter-text spent-amount-text">
|
|
<%= format_price(@budget, @ballot.amount_spent(@heading.id)) %>
|
|
<span id="amount-available" class="amount-available">
|
|
<%= t("spending_proposals.index.available") %>
|
|
<span><%= format_price(@budget, @ballot.amount_available(@heading)) %></span>
|
|
</span>
|
|
</p>
|
|
</span>
|
|
</div>
|