btcpayserver/BTCPayServer/Views/Wallets/ListWallets.cshtml

70 lines
2.6 KiB
Text
Raw Normal View History

2018-07-26 22:32:24 +09:00
@model BTCPayServer.Models.WalletViewModels.ListWalletsViewModel
@{
ViewData["Title"] = "Wallets";
}
<section>
<div class="container">
2019-10-31 15:19:38 +09:00
@if (TempData.HasStatusMessage())
{
<div class="row">
<div class="col-lg-12 text-center">
2019-10-31 15:19:38 +09:00
<partial name="_StatusMessage" />
</div>
2018-07-26 22:32:24 +09:00
</div>
}
2018-07-26 22:32:24 +09:00
<div class="row">
2019-11-01 21:55:05 +01:00
<div class="col-lg-12 section-heading">
<h2>@ViewData["Title"]</h2>
2018-07-26 22:32:24 +09:00
<hr class="primary">
2020-06-11 16:09:33 +02:00
<p>Connect and manage wallets. <a href="https://docs.btcpayserver.org/Wallet/" target="_blank"><span class="fa fa-question-circle-o" title="More information..."></span></a></p>
2018-07-26 22:32:24 +09:00
</div>
</div>
<div class="row">
2019-11-01 22:15:02 +01:00
<div class="col-lg-12">
@if (Model.Wallets.Any())
{
<table class="table table-sm table-responsive-md">
<thead>
<tr>
2019-11-01 22:15:02 +01:00
<th>Store Name</th>
<th>Crypto Code</th>
<th>Balance</th>
<th class="text-right">Actions</th>
</tr>
</thead>
<tbody>
2019-11-01 22:15:02 +01:00
@foreach (var wallet in Model.Wallets)
{
<tr>
@if (wallet.IsOwner)
{
<td><a asp-action="UpdateStore" asp-controller="Stores" asp-route-storeId="@wallet.StoreId">@wallet.StoreName</a></td>
}
else
{
<td>@wallet.StoreName</td>
}
<td>@wallet.CryptoCode</td>
<td>@wallet.Balance</td>
<td class="text-right">
2019-11-01 22:15:02 +01:00
<a asp-action="WalletTransactions" asp-route-walletId="@wallet.Id">Manage</a>
</td>
</tr>
}
</tbody>
</table>
}
else
{
<p class="text-secondary mt-3">
There are no wallets yet. You can add wallets in the store setup.
</p>
}
2019-11-01 22:15:02 +01:00
</div>
2018-07-26 22:32:24 +09:00
</div>
</div>
</section>