06 — waitlist queue
Inbound. {{ rows|length }} in queue.
Newest signups first. [approve] flips status to ACTIVE, grants 2 free scans, and fires the welcome email — handled by services.waitlist.approve_user. [reject] deletes the row.
queue
{{ rows|length }} pending
{% if not rows %}
{% endif %}
// no one in line. (a good problem?)
{% else %}
| joined | tweet | @handle | action | |
|---|---|---|---|---|
| {{ row.email }} | {{ row.created_at_display }} | {% if row.tweet_url %} view tweet {% else %} — {% endif %} | {% if row.x_handle %} @{{ row.x_handle }} {% else %} — {% endif %} |
|