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

Manage Users

{% if not google_ready %}
Google sign-in is not configured yet, so Leads and Users cannot log in until it is (see README).
{% endif %} {% if mail_on and not mail_ready %}
Email sending is not set up yet, so welcome emails will not be sent (see README). Users can still be added.
{% endif %}

Sign-in address

Leads and Users all sign in here. Their role decides what they can do after signing in.

{{ signin_url }}

Add Lead / User

They sign in with Google using this email. No password is needed.{% if mail_on %} A welcome email is sent to them using the template in Settings.{% endif %} Allowed domains: {{ domains|join(', ') }}.

Users

{{ rows|length }} total
{% for u in rows %} {% if u.role == 'admin' %} {% else %} {% endif %} {% endfor %}
S.NoNameEmailRoleAction
{{ loop.index }} {{ u.username }} (password login) admin
{% if not u.email %}No email set: this login cannot sign in yet.{% endif %}
{% if u.email %}
{% endif %}
{% endblock %}