{% if search_skill_list is not null %}

{{"Skills"|get_lang}}

{{"SaveThisSearch"|get_lang}}
{% endif %} {% if profiles is not null %}

{{"SkillProfiles"|get_lang}}

{% endif %} {% if order_user_list is not null %} {% for count, user_list in order_user_list %}

{% if count == total_search_skills %} {{ "CompleteMatch"|get_lang }} {% else %} {% if (total_search_skills - count) == 1 %} {{ "MissingOneStepToMatch"|get_lang }} {% else %} {{ "MissingXStepsToMatch"|get_lang | format(total_search_skills - count)}} {% endif %} {% endif %}

{% for user in user_list %}
{{ user['user'].complete_name }}

{{ 'User' | get_lang }}: {{user['user'].username}}

{{ "Skills"|get_lang }} {{ user.total_found_skills }} / {{ total_search_skills }}
    {% for skill_data in user.skills %}
  • {% if skill_list[skill_data.skill_id].name is not null %} {% if skill_data.found %} {{ skill_list[skill_data.skill_id].name }}{{ skill_list[skill_data.skill_id].name }} {% else %} {{ skill_list[skill_data.skill_id].name }}{{ skill_list[skill_data.skill_id].name }} {% endif %} {% else %} {{ "SkillNotFound"|get_lang }} {% endif %} {# if $skill_data.found "IHaveThisSkill"|get_lang #}
  • {% endfor %}
{% endfor %}
{% endfor %} {% else %} {% if search_skill_list is null %}
{{"NoResults"|get_lang}}
{% endif %} {% endif %}