{% extends "admin/base.html" %} {% block title %}Demo requests{% endblock %} {% block content %}

Demo requests

Appointments booked from the public page, soonest first.

← Dashboard
Show {% set views = [('', 'Open'), ('new','new'), ('scheduled','scheduled'), ('done','done'), ('cancelled','cancelled')] %} {% for val, label in views %} {{ label }} {% endfor %} {% if new_count %}·{{ new_count }} new{% endif %}
{% if requests %}
{% for r in requests %} {% endfor %}
Requested for Contact Company Message Received (UTC) Status
{{ r.preferred_date.strftime('%Y-%m-%d') }} {{ r.preferred_time }} {{ r.name }}
{{ r.email }} {% if r.phone %}
{{ r.phone }}{% endif %}
{{ r.company or '—' }} {{ r.message or '' }} {{ r.created_at.strftime('%Y-%m-%d %H:%M') if r.created_at else '—' }} {{ r.status }}
{% if pagination.pages > 1 %} {% endif %} {% else %}
No demo requests{{ ' with this status' if status }}.
{% endif %} {% endblock %}