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 %>