|
|
|
@ -97,7 +97,7 @@ These are the users that have been [helping others the most with questions in Gi |
|
|
|
|
|
|
|
{% for user in people.last_month_experts[:10] %} |
|
|
|
|
|
|
|
{% if user.login not in skip_users %} |
|
|
|
{% if user.login not in skip_users.users %} |
|
|
|
|
|
|
|
<div class="user"><a href="{{ user.url }}"><div class="avatar-wrapper"><img src="{{ user.avatarUrl }}"/></div><div class="title">@{{ user.login }}</div></a> <div class="count">Questions replied: {{ user.count }}</div></div> |
|
|
|
|
|
|
|
@ -115,7 +115,7 @@ These are the users that have been [helping others the most with questions in Gi |
|
|
|
|
|
|
|
{% for user in people.three_months_experts[:10] %} |
|
|
|
|
|
|
|
{% if user.login not in skip_users %} |
|
|
|
{% if user.login not in skip_users.users %} |
|
|
|
|
|
|
|
<div class="user"><a href="{{ user.url }}"><div class="avatar-wrapper"><img src="{{ user.avatarUrl }}"/></div><div class="title">@{{ user.login }}</div></a> <div class="count">Questions replied: {{ user.count }}</div></div> |
|
|
|
|
|
|
|
@ -133,7 +133,7 @@ These are the users that have been [helping others the most with questions in Gi |
|
|
|
|
|
|
|
{% for user in people.six_months_experts[:10] %} |
|
|
|
|
|
|
|
{% if user.login not in skip_users %} |
|
|
|
{% if user.login not in skip_users.users %} |
|
|
|
|
|
|
|
<div class="user"><a href="{{ user.url }}"><div class="avatar-wrapper"><img src="{{ user.avatarUrl }}"/></div><div class="title">@{{ user.login }}</div></a> <div class="count">Questions replied: {{ user.count }}</div></div> |
|
|
|
|
|
|
|
@ -151,7 +151,7 @@ These are the users that have been [helping others the most with questions in Gi |
|
|
|
|
|
|
|
{% for user in people.one_year_experts[:20] %} |
|
|
|
|
|
|
|
{% if user.login not in skip_users %} |
|
|
|
{% if user.login not in skip_users.users %} |
|
|
|
|
|
|
|
<div class="user"><a href="{{ user.url }}"><div class="avatar-wrapper"><img src="{{ user.avatarUrl }}"/></div><div class="title">@{{ user.login }}</div></a> <div class="count">Questions replied: {{ user.count }}</div></div> |
|
|
|
|
|
|
|
@ -171,7 +171,7 @@ These are the users that have [helped others the most with questions in GitHub]( |
|
|
|
|
|
|
|
{% for user in people.experts[:50] %} |
|
|
|
|
|
|
|
{% if user.login not in skip_users %} |
|
|
|
{% if user.login not in skip_users.users %} |
|
|
|
|
|
|
|
<div class="user"><a href="{{ user.url }}"><div class="avatar-wrapper"><img src="{{ user.avatarUrl }}"/></div><div class="title">@{{ user.login }}</div></a> <div class="count">Questions replied: {{ user.count }}</div></div> |
|
|
|
|
|
|
|
@ -193,7 +193,7 @@ They have contributed source code, documentation, etc. 📦 |
|
|
|
|
|
|
|
{% for user in (contributors.values() | list)[:50] %} |
|
|
|
|
|
|
|
{% if user.login not in skip_users %} |
|
|
|
{% if user.login not in skip_users.users %} |
|
|
|
|
|
|
|
<div class="user"><a href="{{ user.url }}"><div class="avatar-wrapper"><img src="{{ user.avatarUrl }}"/></div><div class="title">@{{ user.login }}</div></a> <div class="count">Pull Requests: {{ user.count }}</div></div> |
|
|
|
|
|
|
|
@ -214,7 +214,7 @@ Translation reviewers have the **power to approve translations** of the document |
|
|
|
<div class="user-list user-list-center"> |
|
|
|
{% for user in (translation_reviewers.values() | list)[:50] %} |
|
|
|
|
|
|
|
{% if user.login not in skip_users %} |
|
|
|
{% if user.login not in skip_users.users %} |
|
|
|
|
|
|
|
<div class="user"><a href="{{ user.url }}"><div class="avatar-wrapper"><img src="{{ user.avatarUrl }}"/></div><div class="title">@{{ user.login }}</div></a> <div class="count">Reviews: {{ user.count }}</div></div> |
|
|
|
|
|
|
|
|