{% extends "base.html" %} {% block page_title %}{{ _('Skill: {name}')|f(name=group.name) }}{% endblock %} {% block body_id %}group-show{% endblock %} {% block body_class %} {{ super() }} search-page {% endblock %} {% block content %}

{{ _('Skill') }}: {{ group.name }}

{% csrf_token %}
{% if not people.paginator.count %}

{% trans name=group.name %} Sorry, we cannot find any mozillians with skill {{ name }} {% endtrans %}

{% else %} {% with items=people %} {% include 'includes/pagination.html' %} {% endwith %}
{% for people_slice in people|slice(3) -%} {% for person in people_slice %} {{ search_result(person) }} {% endfor %} {% endfor %}
{% with items=people %} {% include 'includes/pagination.html' %} {% endwith %} {% endif %} {% endblock content %} {% block page_js %} {% compress js %} {% endcompress %} {% endblock %}