mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-24 22:58:28 +01:00
* Newlines * Dashboard * Add more translations * Moar * Remove from translated texts * Dictionary controller translations * Batch 1 of controller updates * Batch 2 of controller updates * Component translations * Batch 3 of controller updates * Fixes
31 lines
1.2 KiB
Text
31 lines
1.2 KiB
Text
@model BTCPayServer.Storage.Services.Providers.FileSystemStorage.Configuration.FileSystemStorageConfiguration
|
|
@{
|
|
ViewData.SetActivePage(ServerNavPages.Files, $"Local Filesystem Storage");
|
|
}
|
|
|
|
<div class="sticky-header">
|
|
<nav aria-label="breadcrumb">
|
|
<ol class="breadcrumb">
|
|
<li class="breadcrumb-item">
|
|
<a asp-action="Files" text-translate="true">Files</a>
|
|
</li>
|
|
<li class="breadcrumb-item">
|
|
<a asp-action="Storage" text-translate="true">Storage Provider</a>
|
|
</li>
|
|
<li class="breadcrumb-item active" aria-current="page" text-translate="true">Provider</li>
|
|
</ol>
|
|
<h2 text-translate="true">@ViewData["Title"]</h2>
|
|
</nav>
|
|
</div>
|
|
<partial name="_StatusMessage" />
|
|
|
|
<p text-translate="true">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-xl-10 col-xxl-constrain">
|
|
<a asp-action="Storage" asp-route-forceChoice="true" text-translate="true">Change Storage provider</a>
|
|
</div>
|
|
</div>
|
|
|
|
@section PageFootContent {
|
|
<partial name="_ValidationScriptsPartial" />
|
|
}
|