{% extends "profiles/base-wide.html" %} {% load profile_tags %} {% block title %}{% trans 'Similar Users'%}{% endblock %} {% block extra_head %} {{ block.super }} {% endblock %} {% block content %}

By Name By Email

{% if users_with_duplicate_name %}

{% trans "Users with Same Name" %}

{% for users in users_with_duplicate_name %} {% similar_profile_items users %} {% endfor %}
{% endif %} {% if users_with_duplicate_email %}

{% trans "Users with Same Email" %}

{% for users in users_with_duplicate_email %} {% similar_profile_items users %} {% endfor %}
{% endif %} {% if not users_with_duplicate_name and not users_with_duplicate_email %}

{% trans "No similar users found" %} {% endif %} {% if num_pages > 1%}
{% if prev %} {% trans 'Prev' %} {% else %} {% trans 'Prev' %} {% endif %} {% for page in page_range %} {% if page == '...' %} {{ page }} {% else %} {% if page == curr_page %} {{ page }} {% else %} {{ page }} {% endif %} {% endif %} {% endfor %} {% if curr_page >= num_pages %} {% trans 'Next' %} {% else %} {% trans 'Next' %} {% endif %}
{% endif %}

{% endblock %}