{% extends "base.html" %} {% load i18n %} {% block content %}

{% blocktrans %}Select people in the form below or search users. When you send an invitation, they receive a message asking them to join your community.{% endblocktrans %}

{% blocktrans %}Search users{% endblocktrans %}

{# This is either my current network OR user search result. #}
{% csrf_token %}

{% if q %}{% blocktrans %}Search results{% endblocktrans %} {% else %}{% blocktrans %}Invite people from your network{% endblocktrans %} {% endif %}

{% for account in selectable %} {% include "account/select.part.html" %} {% empty %}

{% blocktrans %}No results found.{% endblocktrans %}

{% endfor %}
{% endblock %}