Home page redirects to the about view.
path('', views.about, name="About"),
URL for the Cashier view.
path('cashier/', views.cashier, name="cashier"),
URL for the Staff Home view.
path('staff/', views.staff_home, name="Staff Home"),
URL for the Customer Home view.
path('customer/', views.customer_landing, name="Customer Home"),
URL for the Place Order view.
path('place_order/', views.place_order, name="Place Order"),
URL for the Save Order view.
path('save_order/', views.save_order, name="Save Order"),
URL for the Manager Home view.
path('manager/', views.manager_home, name='Manager Home'),
URL for the Menu Location view.
path('menu_location/', views.menu_loc, name="Menu Location"),
URL for the Account Details view.
path('account_details/', views.account_details, name="Account Details"),
URL for the Update Info view.
path('update_info/', views.update_info, name="Update Info"),
URL for the Sales Analysis view.
path('sales_analysis/', views.sales_analysis, name="Sales Analysis"),
URL for the Get Sales Graph view.
path('get_sales_graph/', views.get_sales_graph, name='get_sales_graph'),
URL for the Get Stock Graph view.
path('get_stock_graph/', views.get_stock_graph, name='get_stock_graph'),
URL for the Alerts view.
path('alerts/', views.alerts, name='alerts'),
URL for the Ingredients view.
path('ingredients/', views.ingredients, name='ingredients'),
URL for the Update Items view.
path('update_items/', views.update_items, name='update items'),
URL for the New Excess Time view.
path('new_excess_time/', views.new_excess_time, name='New Excess Time'),
URL for the Order Online view.
path('order_online/', views.order_online, name='Order Online'),
URL for the Ajax Delete view.
path('ajax_delete/', views.ajax_delete, name='Ajax Delete'),
URL for the Update Stock view.
path('update_stock/', views.update_stock, name="Update Stock"),
URL for the Add New Ingredient view.
path('add_new_ingredient/', views.add_new_ingredient, name="Add Ingredient"),
URL for the Delete Ingredient view.
path('delete_ingredient/', views.delete_ingredient, name="Delete Ingredient"),
URL for the Checkout Order view.
path('checkout_order/', views.checkout_order, name='Check Out Order'),
URL for the Order History view.
path('order_history/', views.order_history, name='Order History'),
URL for the New Order History view.
path('new_order_history/', views.new_order_history, name='new_order_history'),
URL for the Edit Order view.
path('edit_order//', views.edit_order_view, name='edit_order'),
URL for the Edit Item view.
path('edit_item//', views.edit_item, name='edit_item'),
URL for the Create Item view.
path('create_item/', views.create_item, name='create_item'),
URL for the Create Item Submit view.
path('create_item_submit/', views.create_item_submit, name='create_item_submit'),
URL for the Update Favorite view.
path('update_favorite/', views.update_favorite, name="Update Favorite"),
URL for the Delete Order view.
path('delete_order/', views.delete_order, name="delete_order"),
URL for the Kitchen view.
path('kitchen/', views.kitchen, name="Kitchen"),
URL for the Kitchen Deliver view.
path('kitchen_deliver/', views.kitchen_deliver, name="kitchen_deliver"),
Handling static files in Django.
] + static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)