mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-20 10:40:29 +01:00
6048a26511
Some links changed with the recent docs restructuring. I've also added recirects for these on the docs side now.
131 lines
8.1 KiB
Plaintext
131 lines
8.1 KiB
Plaintext
@using BTCPayServer.Services.PaymentRequests
|
|
@using System.Globalization
|
|
@model BTCPayServer.Models.PaymentRequestViewModels.UpdatePaymentRequestViewModel
|
|
@addTagHelper *, BundlerMinifier.TagHelpers
|
|
@{
|
|
ViewData.SetActivePageAndTitle(PaymentRequestsNavPages.Create, (string.IsNullOrEmpty(Model.Id) ? "Create" : "Edit") + " Payment Request");
|
|
}
|
|
|
|
@section PageHeadContent {
|
|
<bundle name="wwwroot/bundles/payment-request-admin-bundle.min.css" asp-append-version="true"></bundle>
|
|
}
|
|
|
|
@section PageFootContent {
|
|
<script src="~/vendor/moment/moment.js" asp-append-version="true"></script>
|
|
<partial name="_ValidationScriptsPartial" />
|
|
<bundle name="wwwroot/bundles/payment-request-admin-bundle.min.js" asp-append-version="true"></bundle>
|
|
}
|
|
<section>
|
|
<div class="container">
|
|
<partial name="_StatusMessage" />
|
|
<h2 class="mb-4">@ViewData["Title"]</h2>
|
|
<form method="post" action="@Url.Action("EditPaymentRequest", "PaymentRequest", new { id = Model.Id}, Context.Request.Scheme)">
|
|
<div class="row">
|
|
<div class="col-lg-6">
|
|
<input type="hidden" name="Id" value="@Model.Id" />
|
|
<div asp-validation-summary="ModelOnly" class="text-danger"></div>
|
|
<div class="form-group">
|
|
<label asp-for="StoreId" class="form-label"></label>
|
|
@if (string.IsNullOrEmpty(Model.Id))
|
|
{
|
|
<select asp-for="StoreId" asp-items="Model.Stores" class="form-select"></select>
|
|
}
|
|
else
|
|
{
|
|
<input type="hidden" asp-for="StoreId" value="@Model.StoreId" />
|
|
<input type="text" class="form-control" value="@Model.Stores.Single(item => item.Value == Model.StoreId).Text" readonly />
|
|
}
|
|
<span asp-validation-for="StoreId" class="text-danger"></span>
|
|
</div>
|
|
<div class="form-group">
|
|
<label asp-for="Email" class="form-label"></label>
|
|
<input type="email" asp-for="Email" class="form-control" />
|
|
<span asp-validation-for="Email" class="text-danger"></span>
|
|
<p id="PaymentRequestEmailHelpBlock" class="form-text text-muted">
|
|
Receive updates for this payment request.
|
|
</p>
|
|
</div>
|
|
<h4 class="mt-5 mb-4">Request Details</h4>
|
|
<div class="form-group">
|
|
<label asp-for="Title" class="form-label" data-required></label>
|
|
<input asp-for="Title" class="form-control" required />
|
|
<span asp-validation-for="Title" class="text-danger"></span>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label asp-for="Amount" class="form-label" data-required></label>
|
|
<input type="number" step="any" asp-for="Amount" class="form-control" required />
|
|
<span asp-validation-for="Amount" class="text-danger"></span>
|
|
</div>
|
|
<div class="form-group">
|
|
<label asp-for="Currency" class="form-label" data-required></label>
|
|
<input asp-for="Currency" class="form-control" required />
|
|
<span asp-validation-for="Currency" class="text-danger"></span>
|
|
</div>
|
|
|
|
<div class="form-group form-check">
|
|
<input asp-for="AllowCustomPaymentAmounts" type="checkbox" class="form-check-input" />
|
|
<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="ExpiryDate" class="form-label"></label>
|
|
<div class="input-group ">
|
|
<input asp-for="ExpiryDate"
|
|
value="@(Model.ExpiryDate?.ToString("u", CultureInfo.InvariantCulture))"
|
|
class="form-control flatdtpicker" min="today" placeholder="No expiry date has been set for this payment request" />
|
|
<button id="ClearExpiryDate" class="btn btn-secondary input-group-clear" type="button" title="Clear">
|
|
<span class="fa fa-times"></span>
|
|
</button>
|
|
</div>
|
|
<span asp-validation-for="ExpiryDate" class="text-danger"></span>
|
|
</div>
|
|
</div>
|
|
<div class="col-lg-9">
|
|
<div class="form-group">
|
|
<label asp-for="Description" class="form-label"></label>
|
|
<textarea asp-for="Description" class="form-control richtext"></textarea>
|
|
<span asp-validation-for="Description" class="text-danger"></span>
|
|
</div>
|
|
<h4 class="mt-5 mb-4">Custom Appearance</h4>
|
|
<div class="form-group">
|
|
<label asp-for="CustomCSSLink" class="form-label"></label>
|
|
<a href="https://docs.btcpayserver.org/Development/Theme/#2-bootstrap-themes" target="_blank" rel="noreferrer noopener">
|
|
<span class="fa fa-question-circle-o text-secondary" title="More information..."></span>
|
|
</a>
|
|
<input asp-for="CustomCSSLink" class="form-control" />
|
|
<span asp-validation-for="CustomCSSLink" class="text-danger"></span>
|
|
</div>
|
|
<div class="form-group">
|
|
<label asp-for="EmbeddedCSS" class="form-label"></label>
|
|
<textarea asp-for="EmbeddedCSS" rows="10" cols="40" class="form-control"></textarea>
|
|
<span asp-validation-for="EmbeddedCSS" class="text-danger"></span>
|
|
</div>
|
|
<div class="form-group mt-4">
|
|
<button type="submit" class="btn btn-primary" id="SaveButton">Save</button>
|
|
@if (!string.IsNullOrEmpty(Model.Id))
|
|
{
|
|
<a class="btn btn-secondary" target="_blank" asp-action="ViewPaymentRequest" asp-route-id="@Context.GetRouteValue("id")" id="@Model.Id" name="ViewAppButton">View</a>
|
|
<a class="btn btn-secondary"
|
|
target="_blank"
|
|
asp-action="ListInvoices"
|
|
asp-controller="Invoice"
|
|
asp-route-searchterm="@($"orderid:{PaymentRequestRepository.GetOrderIdForPaymentRequest(Model.Id)}")">Invoices</a>
|
|
<a class="btn btn-secondary" asp-route-id="@Context.GetRouteValue("id")" asp-action="ClonePaymentRequest" id="@Model.Id">Clone</a>
|
|
@if (!Model.Archived)
|
|
{
|
|
<a class="btn btn-secondary" data-bs-toggle="tooltip" title="Archive this payment request so that it does not appear in the payment request list by default" asp-route-id="@Context.GetRouteValue("id")" asp-controller="PaymentRequest" asp-action="TogglePaymentRequestArchival">Archive</a>
|
|
}
|
|
else
|
|
{
|
|
<a class="btn btn-secondary" data-bs-toggle="tooltip" title="Unarchive this payment request" asp-route-id="@Context.GetRouteValue("id")" asp-controller="PaymentRequest" asp-action="TogglePaymentRequestArchival">Unarchive</a>
|
|
}
|
|
}
|
|
<a asp-action="GetPaymentRequests" class="btn btn-link px-0 ms-3">Back to list</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</section>
|