{% extends "base.html" %} {% block content %} Find people you know Sharing your content allows your friends to see everything you posted as {{ active_persona.username }}. {{form.email(placeholder="Email")}} Find {% if error %} {{ error }} {% endif %} {% if form.email.errors %} {% for error in form.email.errors %}{{ error }}{% endfor %} {% endif %} {{ form.csrf_token }} {% if found %} Found {{found|length}} Personas {% for p in found %} {{p.username}} <{{p.id|truncate(6, True, end="")}}> {% if p.outgoing %}Already sharing{% else %}Share my profile{% endif %} {% endfor %} {% endif %} {% endblock %}
Sharing your content allows your friends to see everything you posted as {{ active_persona.username }}.
{{ error }}