From 841185b39602a23717f8d8c00a2aa87071d5cdea Mon Sep 17 00:00:00 2001 From: Ryan Arthur Date: Thu, 18 Oct 2018 13:54:00 -0400 Subject: [PATCH] Move batching message --- .../templates/transaction/index.html.eex | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/apps/block_scout_web/lib/block_scout_web/templates/transaction/index.html.eex b/apps/block_scout_web/lib/block_scout_web/templates/transaction/index.html.eex index a6e46bb86b..42aa38165f 100644 --- a/apps/block_scout_web/lib/block_scout_web/templates/transaction/index.html.eex +++ b/apps/block_scout_web/lib/block_scout_web/templates/transaction/index.html.eex @@ -1,6 +1,14 @@
+ +

<%= gettext "Validated Transactions" %>

+

+ <%= gettext("Showing") %> + <%= Cldr.Number.to_string!(@transaction_estimated_count, format: "#,###") %> + <%= gettext("Validated Transactions") %> +

+ -

<%= gettext "Validated Transactions" %>

-

- <%= gettext("Showing") %> - <%= Cldr.Number.to_string!(@transaction_estimated_count, format: "#,###") %> - <%= gettext("Validated Transactions") %> -

+ <%= for transaction <- @transactions do %> <%= render BlockScoutWeb.TransactionView, "_tile.html", transaction: transaction %>