Give POA Balance and USD Balance their own rows in the address details

pull/232/head
Ryan Arthur 7 years ago committed by Tim Mecklem
parent 8e46203f73
commit fec4f5cedb
  1. 11
      apps/explorer_web/lib/explorer_web/templates/address/overview.html.eex

@ -21,10 +21,17 @@
</tr> </tr>
<tr> <tr>
<th scope="row"> <th scope="row">
<%= gettext "Balance" %> <%= gettext "POA Balance" %>
</th> </th>
<td data-test="address_balance"> <td data-test="address_balance">
<%= balance(@address) %> </br> <%= balance(@address) %>
</td>
</tr>
<tr>
<th scope="row">
<%= gettext "USD Balance" %>
</th>
<td>
<%= formatted_usd(@address, @exchange_rate) %> <%= formatted_usd(@address, @exchange_rate) %>
</td> </td>
</tr> </tr>

Loading…
Cancel
Save