{%- import "partials/_ui.html" as ui -%} {% if entries.is_empty() %} {% call ui::empty_state("", "No entries found.") %} {% else %}
{% for entry in entries %} {% endfor %}
User Email Verified Pitch Date Status Actions
{{ entry.username }} {{ entry.email }} {% if entry.email_verified %}Yes{% else %}No{% endif %} {% if let Some(pitch_text) = entry.pitch %} {{ pitch_text }} {% else %} No pitch (invited) {% endif %} {% if let Some(inviter) = entry.invited_by_username %}
Invited by @{{ inviter }}
{% endif %}
{{ entry.created_at }} {{ entry.status }} {% if let Some(method) = entry.selection_method %} ({{ method }}) {% endif %} {% if entry.status == "pending" %} {% endif %}
{% endif %}