+
" class="table thead-light table-bordered">
-
- <%= case BlockScoutWeb.ABIEncodedValueView.copy_text(type, value) do %>
- <% :error -> %>
- <%= nil %>
- <% copy_text -> %>
-
-
-
- <% end %>
- |
- <%= name %> |
- <%= type %> |
- <%= indexed? %> |
-
- <%= BlockScoutWeb.ABIEncodedValueView.value_html(type, value) %>
- |
-
- <% end %>
-
+
|
+
<%= gettext "Name" %> |
+
<%= gettext "Type" %> |
+
<%= gettext "Indexed?" %> |
+
<%= gettext "Data" %> |
+
+ <%= for {name, type, indexed?, value} <- mapping do %>
+
+
+ <%= case BlockScoutWeb.ABIEncodedValueView.copy_text(type, value) do %>
+ <% :error -> %>
+ <%= nil %>
+ <% copy_text -> %>
+
+
+
+ <% end %>
+ |
+ <%= name %> |
+ <%= type %> |
+ <%= indexed? %> |
+
+ <%= BlockScoutWeb.ABIEncodedValueView.value_html(type, value) %>
+ |
+
+ <% end %>
+