{% set family = method_kind %} {% set collection = collections.get(family, {}) %} {% set pager = collection.get('pager', {}) %} {% from 'components/page-heading.html' import page_heading %} {% from 'components/pagination.html' import pagination %} {% from 'components/search.html' import search_form with context %} {{ page_heading(t.methods, t.methods_subtitle) }} {% if method_kind == 'skill' %}{{ search_form(t.search_skills, 2000, 'skill') }}{% endif %} {% if collection.get('search_limited') %}

{{ t.skills_limit }}

{% endif %} {% from 'components/read-error.html' import read_error with context %} {% if errors.get(family) %}{{ read_error(errors[family], t[family]) }}{% endif %}
{% for record in collection.get('items', []) %} {% if 'error' not in record %}{% endif %} {% endfor %} {% if not data[family] and not errors.get(family) %}
{% if search_query and family == 'skill' %}

{{ t.skills_no_match }}

{% else %}

{{ t.experience_empty if family == 'experience' else t.skills_empty }}

{% endif %}
{% endif %}