btcpayserver/BTCPayServer/Views/UIInvoice/ListInvoicesPaymentsPartial.cshtml
d11n 77fba4aee3
Add more translations (#6302)
* Newlines

* Dashboard

* Add more translations

* Moar

* Remove   from translated texts

* Dictionary controller translations

* Batch 1 of controller updates

* Batch 2 of controller updates

* Component translations

* Batch 3 of controller updates

* Fixes
2024-10-17 22:51:40 +09:00

95 lines
3.6 KiB
Plaintext

@model (InvoiceDetailsModel Invoice, bool ShowAddress)
@{
var invoice = Model.Invoice;
}
@if (invoice.Overpaid)
{
var usedPaymentMethods = invoice.CryptoPayments.Count(p => p.Paid != null);
<p class="info-note text-warning">
<vc:icon symbol="warning"/>
<span text-translate="true">This invoice got overpaid.</span>
@if (usedPaymentMethods > 1)
{
<span text-translate="true">Each payment method shows the total excess amount.</span>
}
</p>
}
<div class="invoice-payments table-responsive mt-0">
<table class="table table-hover mb-0">
<thead>
<tr>
<th class="text-nowrap w-175px" text-translate="true">Payment method</th>
@if (Model.ShowAddress)
{
<th text-translate="true">Destination</th>
}
@if (invoice.HasRates)
{
<th class="w-150px text-end" text-translate="true">Rate</th>
}
<th class="w-150px text-end" text-translate="true">Total due</th>
@if (invoice.StillDue)
{
<th class="w-150px text-end" text-translate="true">Still due</th>
}
else if (invoice.Overpaid)
{
<th class="w-150px text-end" text-translate="true">Overpaid</th>
}
<th class="w-150px text-end" text-translate="true">Paid</th>
</tr>
</thead>
<tbody>
@foreach (var payment in invoice.CryptoPayments)
{
<tr>
<td class="text-nowrap">@payment.PaymentMethod</td>
@if (Model.ShowAddress)
{
<td title="@payment.Address">
<vc:truncate-center text="@payment.Address" classes="truncate-center-id" />
</td>
}
@if (invoice.HasRates)
{
<td class="text-nowrap text-end">
<span data-sensitive>@payment.Rate</span>
</td>
}
<td class="text-nowrap text-end">
<span data-sensitive>@payment.TotalDue</span>
</td>
@if (invoice.StillDue)
{
<td class="text-nowrap text-end">
@if (payment.Due != null)
{
<span data-sensitive>@payment.Due</span>
}
</td>
}
else if (invoice.Overpaid)
{
<td class="text-nowrap text-end">
@if (payment.Overpaid != null)
{
<span data-sensitive class="text-warning">@payment.Overpaid</span>
}
</td>
}
<td class="text-nowrap text-end">
@if (payment.Paid != null)
{
<span data-sensitive class="text-success">@payment.Paid</span>
}
</td>
</tr>
<vc:ui-extension-point location="invoice-payments-list" />
}
</tbody>
</table>
</div>
<vc:ui-extension-point location="store-invoices-payments" model="@invoice" />