Skip to content

Commit

Permalink
addresed review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
thelostone-mc committed Jul 1, 2019
1 parent 378f46e commit 86322e6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions app/grants/templates/grants/detail/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,10 @@
<script src="{% static "v2/js/grants/detail.js" %}"></script>
<script src="{% static "v2/js/waiting_room_entertainment.js" %}"></script>
<script>
$('#wallet-address').attr(
'href', etherscan_tx_url($('#wallet-address').text().trim(), '{{ grant.network }}')
);

{% if change_ownership == 'Y' %}
_alert({ message: gettext('You are now the owner of this grant.') }, 'success');
{% elif change_ownership == 'N' %}
Expand Down
2 changes: 1 addition & 1 deletion app/grants/templates/grants/detail/info.html
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ <h1 class="font-title-xl my-4 font-weight-bold">

<div class="mb-2">
<i style="width: 14px;" class="fab fa-ethereum mr-2 text-center"></i>
<a id="wallet-address" class="wallet-address" href="https://etherscan.io/address/{{ grant.admin_address }}"
<a id="wallet-address" class="wallet-address"
target="_blank" data-toggle="tooltip" data-placement="top" title="Recipient Funding Address">
{{ grant.admin_address }}
</a>
Expand Down

0 comments on commit 86322e6

Please sign in to comment.