{% extends 'base.html' %} {% block title %}HRMS - Reservation #{{ reservation.id }}{% endblock %} {% block styles %} {% endblock %} {% block page_title %} {% endblock %} {% block content %}
Reservation Details

Created on {{ reservation.created_at.strftime('%B %d, %Y at %I:%M %p') }}

{% if is_admin %} {% endif %} {{ reservation.status|title }}
{{ restaurant.name }}
{{ restaurant.address }}, {{ restaurant.city }}
{{ restaurant.phone }}

Customer Name

{{ user.full_name }}

Contact Number

{{ user.phone if user.phone else 'N/A' }}

Email

{{ user.email }}

Reservation Date & Time

{{ reservation.reservation_date.strftime('%B %d, %Y') }}
{{ reservation.reservation_time.strftime('%I:%M %p') }}

{% if reservation.notes %}
Additional Notes

{{ reservation.notes }}

{% endif %}
Reservation Summary
Guest Count {{ reservation.guest_count }}
Table Number {% if reservation.table_number %}#{{ reservation.table_number }}{% else %}Not Assigned{% endif %}
Status {{ reservation.status|title }}
Created {{ reservation.created_at.strftime('%b %d, %Y') }}
{% if reservation.updated_at != reservation.created_at %}
Last Updated {{ reservation.updated_at.strftime('%b %d, %Y') }}
{% endif %}
{% if reservation.status == 'pending' %}
{% endif %}
{% endblock %} {% block scripts %} {% endblock %}