transactions)
{
var tasks = transactions.Select(t => _Client.BroadcastAsync(t)).ToArray();
diff --git a/BTCPayServer/Views/Stores/UpdateStore.cshtml b/BTCPayServer/Views/Stores/UpdateStore.cshtml
index 548abe18f..1301a5e00 100644
--- a/BTCPayServer/Views/Stores/UpdateStore.cshtml
+++ b/BTCPayServer/Views/Stores/UpdateStore.cshtml
@@ -82,7 +82,7 @@
@if(!string.IsNullOrWhiteSpace(scheme.Value))
{
- Wallet -
+ Wallet -
}
Modify
|
diff --git a/BTCPayServer/Views/Wallets/ListWallets.cshtml b/BTCPayServer/Views/Wallets/ListWallets.cshtml
index c20d510ed..6e5d6f577 100644
--- a/BTCPayServer/Views/Wallets/ListWallets.cshtml
+++ b/BTCPayServer/Views/Wallets/ListWallets.cshtml
@@ -45,7 +45,7 @@
@wallet.CryptoCode |
@wallet.Balance |
- Manage
+ Manage
|
}
diff --git a/BTCPayServer/Views/Wallets/WalletTransactions.cshtml b/BTCPayServer/Views/Wallets/WalletTransactions.cshtml
new file mode 100644
index 000000000..df8c3bfe6
--- /dev/null
+++ b/BTCPayServer/Views/Wallets/WalletTransactions.cshtml
@@ -0,0 +1,54 @@
+@model ListTransactionsViewModel
+@{
+ Layout = "../Shared/_NavLayout.cshtml";
+ ViewData["Title"] = "Manage wallet";
+ ViewData.SetActivePageAndTitle(WalletsNavPages.Transactions);
+}
+
+
+
+@ViewData["Title"]
+
+
+
+
+
+ Timestamp |
+ Transaction Id |
+ Balance |
+
+
+
+ @foreach(var transaction in Model.Transactions)
+ {
+
+ @transaction.Timestamp.ToBrowserDate() |
+
+
+ @transaction.Id
+
+ |
+ @if(transaction.Positive)
+ {
+ @transaction.Balance |
+ }
+ else
+ {
+ @transaction.Balance |
+ }
+
+ }
+
+
+
+
diff --git a/BTCPayServer/Views/Wallets/WalletsNavPages.cs b/BTCPayServer/Views/Wallets/WalletsNavPages.cs
index 67a8304ea..ed6c5bfe1 100644
--- a/BTCPayServer/Views/Wallets/WalletsNavPages.cs
+++ b/BTCPayServer/Views/Wallets/WalletsNavPages.cs
@@ -7,6 +7,7 @@ namespace BTCPayServer.Views.Wallets
{
public enum WalletsNavPages
{
- Send
+ Send,
+ Transactions
}
}
diff --git a/BTCPayServer/Views/Wallets/_Nav.cshtml b/BTCPayServer/Views/Wallets/_Nav.cshtml
index 9ea5c86c2..915dc5dad 100644
--- a/BTCPayServer/Views/Wallets/_Nav.cshtml
+++ b/BTCPayServer/Views/Wallets/_Nav.cshtml
@@ -1,6 +1,7 @@
@inject SignInManager SignInManager