公司內部訂餐系統
今日菜單
選擇您喜愛的餐點,享受美味時光
{% if menu_items %} {% set categories = menu_items|map(attribute='category')|unique|list %} {% for category in categories %}
{{ category }}
{% for item in menu_items if item.category == category %}
{{ item.name }}
{{ item.description }}
${{ "%0.2f"|format(item.price) }}
加入訂單
{% endfor %}
{% endfor %} {% else %}
暫無菜單資料
請聯繫管理員更新菜單
初始化菜單
{% endif %}
我的訂單
購物車是空的
總金額:
$0.00
提交訂單
0