Skip to content

Commit

Permalink
fixes #5570
Browse files Browse the repository at this point in the history
  • Loading branch information
owocki committed Dec 1, 2019
1 parent 940f0d3 commit 5b1f583
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/retail/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -810,7 +810,7 @@ def about(request):
exclude_community = ['kziemiane', 'owocki', 'mbeacom']
community_members = [
]
leadeboardranks = LeaderboardRank.objects.filter(active=True, leaderboard='quarterly_earners').exclude(github_username__in=exclude_community).order_by('-amount').cache()[0: 15]
leadeboardranks = LeaderboardRank.objects.filter(active=True, product='all', leaderboard='quarterly_earners').exclude(github_username__in=exclude_community).order_by('-amount').cache()[0: 15]
for lr in leadeboardranks:
package = (lr.avatar_url, lr.github_username, lr.github_username, '')
community_members.append(package)
Expand Down

0 comments on commit 5b1f583

Please sign in to comment.