{% extends 'core/base.html' %} {% block title %}Invitations – Admin – Nature In Pots{% endblock %} {% block content %}

Invitations

Create Invitation

{% for inv in invitations %} {% endfor %}
Code Recipient Email Created By Created At Used By Used At Active
{{ inv.code }} {{ inv.recipient_email }} {{ inv.creator.email }} {{ inv.created_at.strftime('%Y-%m-%d %H:%M') }} {{ inv.user.email if inv.user else '' }} {{ inv.used_at.strftime('%Y-%m-%d %H:%M') if inv.used_at else '' }} {{ 'Yes' if inv.is_active else 'No' }}
{% endblock %}