diff --git a/BTCPayServer/Views/Apps/ListApps.cshtml b/BTCPayServer/Views/Apps/ListApps.cshtml
index db1b81dc0..0fc64c60e 100644
--- a/BTCPayServer/Views/Apps/ListApps.cshtml
+++ b/BTCPayServer/Views/Apps/ListApps.cshtml
@@ -20,51 +20,52 @@
Create and manage apps.
-
-
-
+
-
-
-
- Store |
- Name |
- App type |
- Actions |
-
-
-
- @foreach (var app in Model.Apps)
- {
+
+
+
-
- @if (app.IsOwner)
- {
- @app.StoreName
- }
- else
- {
- @app.StoreName
- }
- |
- @app.AppName |
- @app.AppType |
-
- @if (app.IsOwner)
- {
- Settings -
- }
- View -
- Remove
- |
+ Store |
+ Name |
+ App type |
+ Actions |
- }
-
-
+
+
+ @foreach (var app in Model.Apps)
+ {
+
+
+ @if (app.IsOwner)
+ {
+ @app.StoreName
+ }
+ else
+ {
+ @app.StoreName
+ }
+ |
+ @app.AppName |
+ @app.AppType |
+
+ @if (app.IsOwner)
+ {
+ Settings -
+ }
+ View -
+ Remove
+ |
+
+ }
+
+
+
diff --git a/BTCPayServer/Views/Invoice/ListInvoices.cshtml b/BTCPayServer/Views/Invoice/ListInvoices.cshtml
index 49c4653c9..5cf8ad89c 100644
--- a/BTCPayServer/Views/Invoice/ListInvoices.cshtml
+++ b/BTCPayServer/Views/Invoice/ListInvoices.cshtml
@@ -45,7 +45,7 @@
-
+
diff --git a/BTCPayServer/Views/PaymentRequest/GetPaymentRequests.cshtml b/BTCPayServer/Views/PaymentRequest/GetPaymentRequests.cshtml
index 443bc00d3..1fd458ac6 100644
--- a/BTCPayServer/Views/PaymentRequest/GetPaymentRequests.cshtml
+++ b/BTCPayServer/Views/PaymentRequest/GetPaymentRequests.cshtml
@@ -19,70 +19,72 @@
-
-
+
-
-
-
- Title |
- Expiry |
- Price |
- Status |
- Actions |
-
-
-
- @foreach (var item in Model.Items)
- {
+
+
+
- @item.Title |
- @(item.ExpiryDate?.ToString("g") ?? "No Expiry") |
- @item.Amount @item.Currency |
- @item.Status |
-
- Edit
- -
- View
- -
- Invoices
- -
- Pay
- -
- Clone
- -
- Remove
- |
+ Title |
+ Expiry |
+ Price |
+ Status |
+ Actions |
- }
-
-
+
+
+ @foreach (var item in Model.Items)
+ {
+
+ @item.Title |
+ @(item.ExpiryDate?.ToString("g") ?? "No Expiry") |
+ @item.Amount @item.Currency |
+ @item.Status |
+
+ Edit
+ -
+ View
+ -
+ Invoices
+ -
+ Pay
+ -
+ Clone
+ -
+ Remove
+ |
+
+ }
+
+
-
+
+
diff --git a/BTCPayServer/Views/Server/ListUsers.cshtml b/BTCPayServer/Views/Server/ListUsers.cshtml
index d97bbced8..f0a7f1e62 100644
--- a/BTCPayServer/Views/Server/ListUsers.cshtml
+++ b/BTCPayServer/Views/Server/ListUsers.cshtml
@@ -5,7 +5,7 @@
-
+
-
-
-
- Store Name |
- Crypto Code |
- Balance |
- Actions |
-
-
-
- @foreach (var wallet in Model.Wallets)
- {
+
+
+
- @if (wallet.IsOwner)
- {
- @wallet.StoreName |
- }
- else
- {
- @wallet.StoreName |
- }
- @wallet.CryptoCode |
- @wallet.Balance |
-
- Manage
- |
+ Store Name |
+ Crypto Code |
+ Balance |
+ Actions |
- }
-
-
+
+
+ @foreach (var wallet in Model.Wallets)
+ {
+
+ @if (wallet.IsOwner)
+ {
+ @wallet.StoreName |
+ }
+ else
+ {
+ @wallet.StoreName |
+ }
+ @wallet.CryptoCode |
+ @wallet.Balance |
+
+ Manage
+ |
+
+ }
+
+
+
diff --git a/BTCPayServer/Views/Wallets/WalletSend.cshtml b/BTCPayServer/Views/Wallets/WalletSend.cshtml
index 71172d4be..82ba6b75e 100644
--- a/BTCPayServer/Views/Wallets/WalletSend.cshtml
+++ b/BTCPayServer/Views/Wallets/WalletSend.cshtml
@@ -6,7 +6,7 @@
ViewData.SetActivePageAndTitle(WalletsNavPages.Send);
}
-