{% extends 'matches/match_item.html' %}
{% load i18n %}
{% load user_tags %}
{% load match_tags_and_filters %}
{% load admin_tags_and_filters %}
{% block user_name_and_age %}
{{ block.super }}
({{ user.get_gender_display }})
{% if user.photo %}
({{ user.photo.visible_on_website|yesno:'Photo is visible,Photo is not visible' }})
({{ user.photo.number_of_faces|default_if_none:"_unknown_" }} faces, offset={{ user.speedy_match_profile.profile_picture_months_offset }})
{% else %}
(No photo)
{% endif %}
{{ user.speedy_match_profile|number_of_matches_html }}
{% endblock %}