mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2026-01-04 14:44:30 +01:00
Adding Reference Number to Payment Requests
This commit is contained in:
committed by
nicolas.dorier
parent
92e7c7a5f9
commit
d2debaa842
@@ -82,6 +82,11 @@
|
||||
<label asp-for="AllowCustomPaymentAmounts" class="form-check-label"></label>
|
||||
<span asp-validation-for="AllowCustomPaymentAmounts" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="ReferenceNumber" class="form-label"></label>
|
||||
<input asp-for="ReferenceNumber" class="form-control" />
|
||||
<span asp-validation-for="ReferenceNumber" class="text-danger"></span>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label asp-for="ExpiryDate" class="form-label"></label>
|
||||
<div class="input-group ">
|
||||
|
||||
@@ -91,6 +91,7 @@
|
||||
</button>
|
||||
</div>
|
||||
</th>
|
||||
<th text-translate="true">Number</th>
|
||||
<th text-translate="true">Status</th>
|
||||
<th class="amount-col" text-translate="true">Amount</th>
|
||||
<th></th>
|
||||
@@ -106,6 +107,9 @@
|
||||
<td class="date-col">
|
||||
@(item.ExpiryDate?.ToBrowserDate() ?? new HtmlString("<span class=\"text-muted\">No Expiry</span>"))
|
||||
</td>
|
||||
<td>
|
||||
@item.ReferenceNumber
|
||||
</td>
|
||||
<td>
|
||||
<span class="badge badge-@item.Status.ToLower() status-badge">@item.Status</span>
|
||||
</td>
|
||||
|
||||
Reference in New Issue
Block a user