Closed Ramin-RX7 closed 1 year ago
Orders
order_list
index
/orders/order_list
order_details
/orders/<int:id>
Foods
foods_list
foods/menu/
food_details
foods/<int:id>
complete in #76
Orders
order_list
must be replaced byindex
. In fact these 2 are the same. so/orders/order_list
must redirect back to the orders.indexorder_details
must be/orders/<int:id>
.Foods
foods_list
which must be the index should also be the same as menu. But this time, the the index of the foods app must redirect to thefoods/menu/
food_details
must have this url:foods/<int:id>