{% extends 'base.html' %} {% block title %}HRMS - Order #{{ order.id }}{% endblock %} {% block styles %} {% endblock %} {% block page_title %} {% endblock %} {% block content %}
Created on {{ order.created_at.strftime('%B %d, %Y at %I:%M %p') }}
Customer Name
{{ user.full_name }}
Contact Number
{{ user.phone_number if user.phone_number else 'N/A' }}
{{ user.email }}
Payment Method
{{ payment.payment_method|title if payment else 'Pending' }}
| Item | Quantity | Price | Subtotal |
|---|---|---|---|
| {{ item.name }} | {{ item.quantity }} | ${{ "%.2f"|format(item.price) }} | ${{ "%.2f"|format(item.subtotal) }} |
| Total Items: {{ total_items }} | Total: | ${{ "%.2f"|format(order.total_amount) }} | |