BY LEVENSTHEIN
{% if levs.groups or levs.singles %}
{% if levs.groups %}
Groups
{% for g in levs.groups %}
- {{g.id}} {{g.name}}
{{g.count}}
{% endfor %}
{% endif %}
{% if levs.singles %}
Singles
{% for l in levs.singles %}
-
{{l.person.name}}, {{l.person.first_name}}
{% endfor %}
{% endif %}
{% else %}
No Matches
{% endif %}
BY ALL NAMES
{% if not names.groups and not names.singles %}
No Matches
{% endif %}
{% if names.groups %}
Groups
{% for g in names.groups %}
- {{g.id}} {{g.name}}
{{g.count}}
{% endfor %}
{% endif %}
{% if names.singles %}
Singles
{% for s in names.singles %}
-
{{s.person.name}}, {{s.person.first_name}}
{% endfor %}
{% endif %}