Skip to content

Instantly share code, notes, and snippets.

@cmltaWt0
Created September 28, 2021 08:26
Show Gist options
  • Save cmltaWt0/d532008c517255a0b8c901dbf24835f7 to your computer and use it in GitHub Desktop.
Save cmltaWt0/d532008c517255a0b8c901dbf24835f7 to your computer and use it in GitHub Desktop.
Gamification navbar
<%
...
show_gamification = settings.FEATURES.get('RG_GAMIFICATION', {}).get('ENABLED')
...
%>
...
<div class="nav-item hidden-mobile nav-item-dropdown" tabindex="-1">
...
<div class="dropdown-user-menu hidden" aria-label=${_("More Options")} role="menu" id="user-menu" tabindex="-1">
...
% if show_gamification:
<div class="mobile-nav-item dropdown-item dropdown-nav-item"><a href="${reverse('gamma_dashboard:gamma-dashboard')}" role="menuitem">${_("Performance")}</a></div>
<div class="mobile-nav-item dropdown-item dropdown-nav-item"><a href="${reverse('gamma_dashboard:gamma-leaderboard')}" role="menuitem">${_("Leaderboard")}</a></div>
% endif
...
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment