Users: unclassified: {{unclassified_users_count}} | total: {{total_users_count}}
{% for id_user_score in users %}
{% set user_id = id_user_score[0] %}
{% set user = id_user_score[1] %}
{% set score = id_user_score[2] %}
= 0.8 %}checked{% endif %}
/>
{{ score | round(precision=2) }}
{{ user.login }}
{%- if user.full_name %}
({{ user.full_name }})
{% endif -%}
{%- if user.location %}
[L] {{ user.location }}
{% endif -%}
{%- if user.website %}
[W] {{ user.website }}
{% endif -%}
{%- if user.description %}
[D] {{ user.description }}
{% endif -%}
{%- if user.repos | length > 0 %}
Repositories:
{% for repo in user.repos %}
{{ macros::compact(name=repo[1].name, desc=repo[1].description) }}
{% endfor %}
{% endif -%}
{%- if user.issues | length > 0 %}
Issues:
{% for issue in user.issues %}
{{ macros::compact(name=issue[1].title, desc=issue[1].body) }}
{% endfor %}
{% endif -%}
{% endfor %}