{% extends "base_query_page.html" %} {% set ga_connected = user_settings.ga_refresh_token %} {% block pagetitle %}Manage Users{% endblock %} {% block bodytitle %}Manage Users{% endblock %} {% block head %} {% endblock %} {% block api_query_content %}

Add a User


Once you add a user please let them know they can activate their account by visiting: {{ activate_link }}

{% for invite in invitations %} {% if loop.first %}

Outstanding Invites

{% endif %} {# First item in loop #} {% if loop.last %}
Email Date Added
{{ invite.email }} {{ invite.issued }}
{% endif %} {# Last item in loop #} {% endfor %} {% for user in users %} {% if loop.first %}

Active Users

{% endif %} {# First item in loop #} {% if loop.last %}
Email Name
{{ user.email }} {{ user.nickname }}
{% endif %} {# Last item in loop #} {% endfor %} {% endblock %}