Skip to content

Commit

Permalink
Merge pull request TreyWW#310 from introkun/bug/309-price-currency
Browse files Browse the repository at this point in the history
309: Price in the invoice is missing currency symbol
  • Loading branch information
TreyWW authored Apr 7, 2024
2 parents 7be12ff + 0bf0f46 commit c430d85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/templates/pages/invoices/view/invoice.html
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ <h2 class="text-2xl font-bold text-gray-800">INVOICE</h2>
<span class="text-sm text-gray-900">{{ item.hours }}</span>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<span class="text-sm text-gray-900">{{ item.price_per_hour }}</span>
<span class="text-sm text-gray-900">{{ invoice.get_currency_symbol }}{{ item.price_per_hour }}</span>
</td>
<td class="px-6 py-4 text-right whitespace-nowrap">
<span class="text-sm text-gray-900">{{ invoice.get_currency_symbol }}{{ item.get_total_price | floatformat:2 }}</span>
Expand Down

0 comments on commit c430d85

Please sign in to comment.