diff --git a/app/dashboard/templates/bounty/invoice.html b/app/dashboard/templates/bounty/invoice.html
index a4c7d28d829..f0b3b07af70 100644
--- a/app/dashboard/templates/bounty/invoice.html
+++ b/app/dashboard/templates/bounty/invoice.html
@@ -181,29 +181,46 @@
- {% for fullfillment in accepted_fulfillments %}
-
-
- {% trans "Direct Payment to " %}{{fullfillment.fulfiller_github_username}} {{fullfillment.fulfiller_address}}
- |
-
-
- {{bounty.value_true}} {{bounty.token_name}} (${{bounty.get_value_in_usdt|floatformat:2}})
- |
-
- {% endfor %}
- {% for tip in tips %}
-
-
- Direct Payment to {{tip.username}} {{tip.receive_address}}
- |
-
-
- {{tip.amount_in_whole_units}} {{tip.tokenName}} (${{tip.value_in_usdt|floatformat:2}})
- |
-
- {% endfor %}
+ {% if web3_type == 'bounties_network' %}
+
+ {% for fullfillment in accepted_fulfillments %}
+
+
+ {% trans "Direct Payment to " %}{{fullfillment.fulfiller_github_username}} {{fullfillment.fulfiller_address}}
+ |
+
+
+ {{bounty.value_true}} {{bounty.token_name}} (${{bounty.get_value_in_usdt|floatformat:2}})
+ |
+
+ {% endfor %}
+
+ {% for tip in tips %}
+
+
+ Direct Payment to {{tip.username}} {{tip.receive_address}}
+ |
+
+
+ {{tip.amount_in_whole_units}} {{tip.tokenName}} (${{tip.value_in_usdt|floatformat:2}})
+ |
+
+ {% endfor %}
+
+ {% else %}
+ {% for fullfillment in accepted_fulfillments %}
+
+
+ {% trans "Direct Payment to " %}{{fullfillment.fulfiller_github_username}} {{fullfillment.fulfiller_address}}
+ |
+
+
+ {{fullfillment.payout_amount}} {{fullfillment.token_name}} (${{fullfillment.payout_amount_usd|floatformat:2}})
+ |
+
+ {% endfor %}
+ {% endif %}
{% if fee_value_in_usdt %}
diff --git a/app/dashboard/templates/profiles/header_details.html b/app/dashboard/templates/profiles/header_details.html
index 71f310b1423..db1b7884e16 100644
--- a/app/dashboard/templates/profiles/header_details.html
+++ b/app/dashboard/templates/profiles/header_details.html
@@ -24,10 +24,27 @@
{% endif %}
-{% if profile.data.bio %}
+{% if profile.bio %}
+
+{% elif profile.data.bio %}
+{% endif %}
+{% if profile.interests %}
+ Interests:
+
+ {% for interest in profile.interests %}
+ {% if forloop.counter < 5 %}
+ {{interest}}
+ {% endif %}
+ {% endfor %}
+ {% if profile.interests|length > 4 %}
+ +{{profile.interests|length|add:"-4"}}
+ {% endif %}
+
{% endif %}
{% if profile.custom_tagline %}