Skip to content

Commit

Permalink
GITC-101: Fixes the sent/received kudos links in the me menu (#9225)
Browse files Browse the repository at this point in the history
* GITC-101: Fixes the sent/received kudos links in the me menu

* GITC-101: Fixes the hackathons projects & played quests links in the me menu
  • Loading branch information
gdixon authored Jun 30, 2021
1 parent 7c1fc24 commit 6a834d5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions app/dashboard/templates/shared/nav_auth.html
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@
</li>
{% if not profile.persona_is_funder %}
<li>
<a class="dropdown-item dropdown-item-small" href="{{profile.url}}/hackathons">{% trans "Projects" %}</a>
<a class="dropdown-item dropdown-item-small" href="{{ profile_url }}/hackathons">{% trans "Projects" %}</a>
</li>
{% endif %}
<li>
Expand Down Expand Up @@ -156,7 +156,7 @@
<b class="gc-menu-submenu-title d-none d-md-block px-3 pt-1 pb-2">{% trans "My Quests" %}</b>
<ul class="list-unstyled mb-0">
<li>
<a class="dropdown-item dropdown-item-small" href="{{profile.url}}/quests">{% trans "Played" %}</a>
<a class="dropdown-item dropdown-item-small" href="{{ profile_url }}/quests">{% trans "Played" %}</a>
</li>
<hr />
<li>
Expand All @@ -169,10 +169,10 @@
<b class="gc-menu-submenu-title d-none d-md-block px-3 pt-1 pb-2">{% trans "My Kudos" %}</b>
<ul class="list-unstyled mb-0">
<li>
<a class="dropdown-item dropdown-item-small" href="{{profile.url}}/kudos#mykudos">{% trans "Received" %}</a>
<a class="dropdown-item dropdown-item-small" href="{{ profile_url }}/kudos#mykudos">{% trans "Received" %}</a>
</li>
<li>
<a class="dropdown-item dropdown-item-small" href="{{profile.url}}/kudos#sentkudos">{% trans "Sent" %}</a>
<a class="dropdown-item dropdown-item-small" href="{{ profile_url }}/kudos#sentkudos">{% trans "Sent" %}</a>
</li>
<hr />
<li>
Expand Down

0 comments on commit 6a834d5

Please sign in to comment.