mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 18:11:36 +01:00
845e2881fa
* Move POS assets * WIP * Refactor into common Vue mixin * Offcanvas updates * Unifications across POS views * POSData view fix * Number and test fixes * Update cart width * Fix test * More view unification * Hide cart when emptied * Validate cart * Header improvement * Increase remove icon size * Animate add to cart action * Offcanvas for mobile, sidebar for desktop * ui+pos: updates icon size + badge + label * Remove cart table headers * Use same size for Cart and Shop headlines * Update search placeholder * Bump horizontal input padding * Increase sidebar width * Bump badge font size * Fix manipulating the quantity of line items * Fix cart icon * Update cart display * updates empty button * Rounded search input * Remove cart button on desktop * Fix dark accent color * More accent fixes * Fix plus/minus alignment * Update BTCPayServer/Views/Shared/PointOfSale/Public/Cart.cshtml * Apply suggestions from code review --------- Co-authored-by: dstrukt <gfxdsign@gmail.com>
59 lines
3.1 KiB
Plaintext
59 lines
3.1 KiB
Plaintext
@using BTCPayServer.Abstractions.Extensions
|
|
@using BTCPayServer.Views.Stores
|
|
@model BTCPayServer.PayoutProcessors.OnChain.UIOnChainAutomatedPayoutProcessorsController.OnChainTransferViewModel
|
|
@{
|
|
ViewData["NavPartialName"] = "../UIStores/_Nav";
|
|
Layout = "../Shared/_NavLayout.cshtml";
|
|
ViewData.SetActivePage(StoreNavPages.PayoutProcessors, "On-Chain Payout Processor", Context.GetStoreData().Id);
|
|
var cryptoCode = Context.GetRouteValue("cryptocode")?.ToString();
|
|
}
|
|
<div class="row">
|
|
<div class="col-xl-8 col-xxl-constrain">
|
|
<div class="d-flex align-items-center justify-content-between mb-3">
|
|
<h3 class="mb-0">@ViewData["Title"]</h3>
|
|
</div>
|
|
<p>Set a schedule for automated On-Chain Bitcoin Payouts. </p>
|
|
@if (!ViewContext.ModelState.IsValid)
|
|
{
|
|
<div asp-validation-summary="All" class="text-danger"></div>
|
|
}
|
|
<form method="post">
|
|
<div class="form-check">
|
|
<input asp-for="ProcessNewPayoutsInstantly" type="checkbox" class="form-check-input" />
|
|
<label asp-for="ProcessNewPayoutsInstantly" class="form-check-label">Process approved payouts instantly</label>
|
|
<span asp-validation-for="ProcessNewPayoutsInstantly" class="text-danger"></span>
|
|
</div>
|
|
<div class="form-group">
|
|
<label asp-for="IntervalMinutes" class="form-label" data-required>Interval</label>
|
|
<div class="input-group">
|
|
<input asp-for="IntervalMinutes" class="form-control" inputmode="numeric" style="max-width:12ch;">
|
|
<span class="input-group-text">minutes</span>
|
|
<span asp-validation-for="IntervalMinutes" class="text-danger"></span>
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<label asp-for="FeeTargetBlock" class="form-label" data-required>Fee block target</label>
|
|
<div class="input-group">
|
|
<input asp-for="FeeTargetBlock" class="form-control" min="1" inputmode="numeric" style="max-width:12ch;">
|
|
<span class="input-group-text">blocks</span>
|
|
<span asp-validation-for="FeeTargetBlock" class="text-danger"></span>
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<label asp-for="Threshold" class="form-label" data-required>Threshold</label>
|
|
<div class="input-group">
|
|
<input asp-for="Threshold" class="form-control" min="0" inputmode="numeric" style="max-width:12ch;">
|
|
<span class="input-group-text">@cryptoCode</span>
|
|
<span asp-validation-for="FeeTargetBlock" class="text-danger"></span>
|
|
</div>
|
|
<div class="form-text">Only process payouts when this payout sum is reached.</div>
|
|
</div>
|
|
<button name="command" type="submit" class="btn btn-primary mt-2" value="Save" id="Save">Save</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
@section PageFootContent {
|
|
<partial name="_ValidationScriptsPartial" />
|
|
}
|