{% extends "base.html" %} {% block title %}Directory{% endblock %} {% block content %}

User Directory

{% if not logged_in %}

👋 Welcome to Hush Line! Find users who've opted into being listed below.

{% endif %}
{% if not logged_in %}

⭐️ Verified accounts are offered to journalists, businesses, and other public figures and have manually verified their identities with a member of our staff. Learn more about our verification process.

{% endif %}
{% for user in users %} {% if user.is_verified and user.show_in_directory %}

{{ user.display_name or user.primary_username }}

{% if user.display_name %}

@{{ user.primary_username }}

{% endif %} {% if user.is_admin %}

⚙️ Admin

{% endif %} {% if user.bio %}

{{ user.bio }}

{% endif %}
{% endif %} {% else %}

🙈
Nothing to see here...

{% endfor %}
{% for user in users %} {% if user.show_in_directory %}

{{ user.display_name or user.primary_username }}

{% if user.display_name %}

@{{ user.primary_username }}

{% endif %} {% if user.is_verified or user.is_admin %}
{% if user.is_verified %}

⭐️ Verified Account

{% endif %} {% if user.is_admin %}

⚙️ Admin

{% endif %}
{% endif %} {% if user.bio %}

{{ user.bio }}

{% endif %}
{% endif %} {% else %}

🙈
Nothing to see here...

{% endfor %}
{% endblock %} {% block scripts %} {% endblock %}