{% extends "site_base.html" %} {% block body_class %}authed pinax-cohorts{% endblock %} {% block head_title %}{{ cohort.name }} cohort{% endblock %} {% block body %}

{{ cohort.name }}

{% for member in cohort.members %} {% empty %} {% endfor %}
Invite Status Sent At
{{ member.email }} {% include "pinax/cohorts/_status.html" %} {% if member.signup_code %} {{ member.signup_code.sent }} {% endif %}
No Cohort Members Yet
Created {{ cohort.created }}
Users: {{ cohort.member_counts.users }} / Total: {{ cohort.member_counts.total }}
{% if cohort.member_counts.pending %}
{% csrf_token %}
{% endif %}

Invite Email Address

{% csrf_token %}

Waiting List ({{ waiting_list.count }})

{% csrf_token %}
Invite next people
{% for item in waiting_list %}
{{ item.email }}
{{ item.created|date }}
{% csrf_token %}
{% endfor %}
{% endblock %}