{% extends "base.html" %} {% load distances %} {% load emails %} {% block title %}People Near You{% endblock %} {% block heading %}People Near You{% endblock %} {% block bodyclass %}people{% endblock %} {% block extrahead %} {% endblock %} {% block content %} {% if people %} {% if large_distance %}

Sorry, there isn't anyone all that near to you. Below is a list of people you may wish to visit when travelling futher afield.

{% endif %} {% for dist, person in people %} {% endfor %}
{{person.name}} {{dist|distanceformat}}
{% else %}

Sorry, there's no-one near you :(

Maybe try somewhere else?

Why not try searching for people near where you may be visiting when on holiday, or next time you're travelling for work?

{% endif %} {% endblock %}