mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-20 10:40:29 +01:00
a58ecfd35a
closes #895
22 lines
766 B
Plaintext
22 lines
766 B
Plaintext
@model BTCPayServer.Storage.Services.Providers.FileSystemStorage.Configuration.FileSystemStorageConfiguration
|
|
@{
|
|
ViewData.SetActivePageAndTitle(ServerNavPages.Services, $"Storage - Local Filesystem");
|
|
}
|
|
|
|
<partial name="_StatusMessage" for="@TempData["StatusMessage"]"/>
|
|
<div class="row">
|
|
<div class="col-lg-6">
|
|
<div asp-validation-summary="All" class="text-danger"></div>
|
|
</div>
|
|
</div>
|
|
<p>Any uploaded files are being saved on the same machine that hosts BTCPay; please pay attention to your storage space.</p>
|
|
<div class="row">
|
|
<div class="col-lg-6">
|
|
<a asp-action="Storage" asp-route-forceChoice="true">Change Storage provider</a>
|
|
</div>
|
|
</div>
|
|
|
|
@section Scripts {
|
|
@await Html.PartialAsync("_ValidationScriptsPartial")
|
|
}
|