mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 09:54:30 +01:00
parent
fe776edc9e
commit
6c71949888
@ -64,21 +64,21 @@
|
||||
<table class="table table-sm table-responsive-lg">
|
||||
<thead class="thead-inverse">
|
||||
<tr>
|
||||
<th style="min-width: 90px;" class="col-md-auto">
|
||||
<th scope="col">
|
||||
Start
|
||||
</th>
|
||||
<th style="max-width: 90px;" class="text-left">Name</th>
|
||||
<th class="text-left">Refunded</th>
|
||||
<th class="text-right">Actions</th>
|
||||
<th scope="col">Name</th>
|
||||
<th scope="col">Refunded</th>
|
||||
<th scope="col">Actions</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@foreach (var pp in Model.PullPayments)
|
||||
{
|
||||
<tr>
|
||||
<td class="col-2"><span>@pp.StartDate.ToBrowserDate()</span></td>
|
||||
<td class="col-2"><span>@pp.Name</span></td>
|
||||
<td class="col-4">
|
||||
<td>@pp.StartDate.ToBrowserDate()</td>
|
||||
<td>@pp.Name</td>
|
||||
<td class="align-middle">
|
||||
<div class="progress ppProgress" data-pp="@pp.Id" data-toggle="tooltip" data-html="true">
|
||||
<div class="progress-bar" role="progressbar" aria-valuenow="@pp.Progress.CompletedPercent"
|
||||
aria-valuemin="0" aria-valuemax="100" style="white-space: nowrap; overflow: hidden; text-overflow: ellipsis; width:@(pp.Progress.CompletedPercent)%;">
|
||||
@ -88,10 +88,10 @@
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
<td class="text-right col-3">
|
||||
<td>
|
||||
<a asp-action="ViewPullPayment"
|
||||
asp-controller="PullPayment"
|
||||
asp-route-pullPaymentId="@pp.Id">View</a>| <a class="pp-payout" asp-action="Payouts"
|
||||
asp-route-pullPaymentId="@pp.Id">View</a> | <a class="pp-payout" asp-action="Payouts"
|
||||
asp-route-walletId="@this.Context.GetRouteValue("walletId")"
|
||||
asp-route-pullPaymentId="@pp.Id">Payouts</a> | <a asp-action="ArchivePullPayment"
|
||||
asp-route-walletId="@this.Context.GetRouteValue("walletId")"
|
||||
|
Loading…
Reference in New Issue
Block a user