mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-01-19 05:33:31 +01:00
77fba4aee3
* 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
15 lines
394 B
Plaintext
15 lines
394 B
Plaintext
@{
|
|
Layout = "_LayoutSimple";
|
|
var allErrors = ViewData.ModelState.Values.SelectMany(v => v.Errors.Select(b => b.ErrorMessage));
|
|
}
|
|
|
|
<div class="row">
|
|
<div class="col-lg-12">
|
|
<h2 text-translate="true">Pay Button request failed</h2>
|
|
@foreach (var error in allErrors)
|
|
{
|
|
<div class="alert alert-danger mt-4">@error</div>
|
|
}
|
|
</div>
|
|
</div>
|