{% load i18n %}
{% if show_heading|default:False %}
{% trans "Sample" %} {% if count > samples|length %}({{ samples|length }} {% trans "of" %} {{ count }}){% endif %}
{% endif %} {% if samples %}
{% for s in samples %} {% endfor %}
{% trans "Name" %} {% trans "Details" %}
{% if s.url %} {{ s.name }} {% else %} {{ s.name }} {% endif %} {% if s.expected %} {{ s.actual|default:"∅" }} {{ s.expected }} {% endif %} {% if s.ipam_type or s.address_count %} {% if s.ipam_type %}{{ s.ipam_type }}{% endif %}{% if s.address_count %}{% if s.ipam_type %} · {% endif %}{{ s.address_count }}×{% endif %} {% endif %} {% if s.group_count %} {% blocktrans with n=s.group_count %}{{ n }} groups{% endblocktrans %} {% endif %} {% if s.group_a and s.group_b %} {% if s.group_a_url %}{{ s.group_a }}{% else %}{{ s.group_a }}{% endif %} {% if s.group_b_url %}{{ s.group_b }}{% else %}{{ s.group_b }}{% endif %} {% if s.overlap %} {% blocktrans with o=s.overlap %}{{ o }} shared{% endblocktrans %} {% endif %} {% if s.overlap_pct %} {{ s.overlap_pct }}% {% endif %} {% if s.score %} J {{ s.score|floatformat:2 }} {% endif %} {% endif %} {% if s.kind %} {{ s.kind }} {% endif %}
{% else %}

{% trans "No samples." %}

{% endif %}