{% if matches %} {% if number_of_usernames_found %} Found {{number_of_usernames_found}} of {{number_of_usernames_searched}} usernames searched. {% endif %} {% if usernames_not_found %} The missing username{{usernames_not_found|length|pluralize}} {{usernames_not_found|length|pluralize:"is, are"}}: {{ usernames_not_found|join:", " }}. {% endif %}
{% for user in matches %} {% endfor %}
# Username First Name Last Name Email Source
{{ forloop.counter }} {{ user.username }} {{ user.first_name }} {{ user.last_name }} {{ user.email }} {{ user.source }}
{% else %}
No results!
{% endif %}