@using BTCPayServer.Abstractions.Models @using BTCPayServer.TagHelpers @using Microsoft.AspNetCore.Mvc.TagHelpers @using BTCPayServer.Abstractions.Contracts @using BTCPayServer.Client @inject IFileService FileService; @model GeneralSettingsViewModel @{ Layout = "../Shared/_NavLayout.cshtml"; ViewData.SetActivePage(StoreNavPages.General, "General", Context.GetStoreData().Id); var canUpload = await FileService.IsAvailable(); }
@if (!ViewContext.ModelState.IsValid) {
}

General

Branding

@if (!string.IsNullOrEmpty(Model.LogoFileId)) { }
@if (canUpload) {
@if (!string.IsNullOrEmpty(Model.LogoFileId)) { @Model.StoreName Logo }
} else {
In order to upload a logo, a file storage must be configured.
}
@if (!string.IsNullOrEmpty(Model.CssFileId)) { }
@if (canUpload) {
@if (!string.IsNullOrEmpty(Model.CssFileId)) { Custom CSS }
Use this CSS to customize the public/customer-facing pages of this store. (Invoice, Payment Request, Pull Payment, etc.)
} else {
In order to upload a CSS file, a file storage must be configured.
}

Payment

@* For whatever reason wrapping the select with this div fixes this Safari bug: https://github.com/btcpayserver/btcpayserver/issues/3699 *@
minutes
percent
days

Additional Actions

@if (Model.CanDelete) { Delete this store }
@section PageFootContent { }