diff --git a/apps/block_scout_web/lib/block_scout_web/templates/tokens/token/show.html.eex b/apps/block_scout_web/lib/block_scout_web/templates/tokens/token/show.html.eex deleted file mode 100644 index e04f8e134d..0000000000 --- a/apps/block_scout_web/lib/block_scout_web/templates/tokens/token/show.html.eex +++ /dev/null @@ -1,94 +0,0 @@ -
- <%= render( - OverviewView, - "_details.html", - token: @token, - total_token_transfers: @total_token_transfers, - total_token_holders: @total_token_holders, - conn: @conn - ) %> - -
-
-
- - - - - -
- -
-

<%= gettext "Token Transfers" %>

- - <%= if Enum.any?(@transfers) do %> - <%= for transfer <- @transfers do %> - <%= render("_token_transfer.html", token: @token, transfer: transfer) %> - <% end %> - <% else %> -
- - <%= gettext "There are no transfers for this Token." %> - -
- <% end %> - - <%= if @next_page_params do %> - <%= link( - gettext("Older"), - class: "button button-secondary button-small float-right mt-4", - to: token_path(@conn, :show, @token.contract_address_hash, @next_page_params) - ) %> - <% end %> -
-
-
-