From 62ad8d094abae397ee6444e9bfcfe0b28fba8d3f Mon Sep 17 00:00:00 2001 From: jimmay5469 Date: Mon, 25 Jun 2018 16:29:41 -0400 Subject: [PATCH] Always show filter dropdown Co-authored-by: Stamates --- .../index.html.eex | 78 ++++++----- .../address_transaction/index.html.eex | 121 +++++++++--------- 2 files changed, 98 insertions(+), 101 deletions(-) diff --git a/apps/explorer_web/lib/explorer_web/templates/address_internal_transaction/index.html.eex b/apps/explorer_web/lib/explorer_web/templates/address_internal_transaction/index.html.eex index 34438e7718..79f7c717b5 100644 --- a/apps/explorer_web/lib/explorer_web/templates/address_internal_transaction/index.html.eex +++ b/apps/explorer_web/lib/explorer_web/templates/address_internal_transaction/index.html.eex @@ -37,47 +37,45 @@
- - <%= if Enum.count(@internal_transactions) > 0 do %> - + <%= if Enum.count(@transactions) > 0 do %> + + + + + + + + + + + + + + + + <%= for transaction <- @transactions do %> + <%= render "_transaction.html", locale: @locale, transaction: transaction %> + <% end %> + +
+ <%= gettext "Status" %> + <%= gettext "Hash" %><%= gettext "Block" %><%= gettext "Age" %><%= gettext "From" %><%= gettext "To" %><%= gettext "Value" %> (<%= gettext "Ether" %>)<%= gettext "Fee" %>
<% else %>

<%= gettext "There are no Transactions" %>

<% end %>