{% extends "profiles/base.html" %} {% load i18n %} {% load profile_tags %} {% block title %}{% trans 'Similar Users'%}{% endblock %} {% block extra_head %} {{ block.super }} {% endblock %} {% block body %} {{ block.super }}
{% users_nav request.user user_this %}
{% if users_with_duplicate_name %}

{% trans "Users with Same Names" %}

{% 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 %} Prev {% else %} 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 %} Next {% else %} Next {% endif %}
{% endif %}

{% endblock %}