muhammad_nasif

Untitled

Dec 11th, 2020
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.06 KB | None | 0 0
  1. urlpatterns = [
  2. path('admin/', admin.site.urls),
  3. path('sales_entry', sales_view.load),
  4. path('servicing', servicing_view.load),
  5. path('product_info', sales_view.product_info),
  6. path('home', customer_view.load),
  7. path('laptop', customer_view.load_laptop),
  8. path('login', customer_view.login),
  9. path('', customer_view.load),
  10. path('admin_panel', administrator_view.load),
  11. path('logout', customer_view.del_session),
  12. path('hire', administrator_view.hire),
  13. path('all_employees', administrator_view.show_employees),
  14. path('imei_entry', sales_view.imei_entry_load),
  15. path('submit_imei', sales_view.submit_imei),
  16. path('report_<int:id>', administrator_view.employee_report, name='employee_report'),
  17. path('update_<int:id>', administrator_view.update_employees, name='employee_update'),
  18. path('check_stock', sales_view.check_stock),
  19. path('sale_status', administrator_view.sale_status),
  20. path('sales_representative_status', sales_view.sales_representative_status),
  21. path('change_info', sales_view.change_info)
  22. ]
  23.  
Advertisement
Add Comment
Please, Sign In to add comment