{% if overview is defined %} {% if overview.repos_with_specs %}
{% for repo in overview.repos_with_specs %}
{{ repo.full_name }} {% if repo.config and repo.config.team %} {{ repo.config.team }} {% endif %} {% if repo.description %}

{{ repo.description }}

{% endif %}
{{ repo.spec_count }} spec{{ 's' if repo.spec_count != 1 }}{% if repo.docs %} · {{ repo.docs | length }} doc{{ 's' if repo.docs | length != 1 }}{% endif %}
{% endfor %}
{% endif %} {% if overview.repos_without_specs %}

Repos without specs

{% for repo in overview.repos_without_specs %}
{{ repo.full_name }} {% if repo.description %}

{{ repo.description }}

{% endif %}

{{ repo.docs | length }} doc{{ 's' if repo.docs | length != 1 }}

{% endfor %}
{% endif %} {% endif %}