├── .gitignore ├── README.md ├── __pycache__ └── app.cpython-311.pyc ├── app.py ├── application ├── __pycache__ │ ├── controllers.cpython-311.pyc │ ├── database.cpython-311.pyc │ ├── models.cpython-311.pyc │ └── resources.cpython-311.pyc ├── controllers.py ├── database.py ├── models.py └── resources.py ├── database.png ├── date_time.zip ├── instance └── lmsdata.sqlite3 ├── requirements.txt ├── search.py ├── static ├── dashboard.css ├── img.png ├── img1.png ├── img2.png ├── reg-log.css ├── review.css └── transact.css ├── templates ├── admin_dash.html ├── create_transac.html ├── login.html ├── register.html ├── review.html ├── srch_result.html ├── summary.html └── user_dash.html ├── test.py ├── test.txt ├── test2.py └── wireframe-LMS.png /.gitignore: -------------------------------------------------------------------------------- 1 | /env -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adarsh7448/Logistics-system-MADI/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/app.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adarsh7448/Logistics-system-MADI/HEAD/__pycache__/app.cpython-311.pyc -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adarsh7448/Logistics-system-MADI/HEAD/app.py -------------------------------------------------------------------------------- /application/__pycache__/controllers.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adarsh7448/Logistics-system-MADI/HEAD/application/__pycache__/controllers.cpython-311.pyc -------------------------------------------------------------------------------- /application/__pycache__/database.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adarsh7448/Logistics-system-MADI/HEAD/application/__pycache__/database.cpython-311.pyc -------------------------------------------------------------------------------- /application/__pycache__/models.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adarsh7448/Logistics-system-MADI/HEAD/application/__pycache__/models.cpython-311.pyc -------------------------------------------------------------------------------- /application/__pycache__/resources.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adarsh7448/Logistics-system-MADI/HEAD/application/__pycache__/resources.cpython-311.pyc -------------------------------------------------------------------------------- /application/controllers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adarsh7448/Logistics-system-MADI/HEAD/application/controllers.py -------------------------------------------------------------------------------- /application/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adarsh7448/Logistics-system-MADI/HEAD/application/database.py -------------------------------------------------------------------------------- /application/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adarsh7448/Logistics-system-MADI/HEAD/application/models.py -------------------------------------------------------------------------------- /application/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adarsh7448/Logistics-system-MADI/HEAD/application/resources.py -------------------------------------------------------------------------------- /database.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adarsh7448/Logistics-system-MADI/HEAD/database.png -------------------------------------------------------------------------------- /date_time.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adarsh7448/Logistics-system-MADI/HEAD/date_time.zip -------------------------------------------------------------------------------- /instance/lmsdata.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adarsh7448/Logistics-system-MADI/HEAD/instance/lmsdata.sqlite3 -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adarsh7448/Logistics-system-MADI/HEAD/requirements.txt -------------------------------------------------------------------------------- /search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adarsh7448/Logistics-system-MADI/HEAD/search.py -------------------------------------------------------------------------------- /static/dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adarsh7448/Logistics-system-MADI/HEAD/static/dashboard.css -------------------------------------------------------------------------------- /static/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adarsh7448/Logistics-system-MADI/HEAD/static/img.png -------------------------------------------------------------------------------- /static/img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adarsh7448/Logistics-system-MADI/HEAD/static/img1.png -------------------------------------------------------------------------------- /static/img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adarsh7448/Logistics-system-MADI/HEAD/static/img2.png -------------------------------------------------------------------------------- /static/reg-log.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adarsh7448/Logistics-system-MADI/HEAD/static/reg-log.css -------------------------------------------------------------------------------- /static/review.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adarsh7448/Logistics-system-MADI/HEAD/static/review.css -------------------------------------------------------------------------------- /static/transact.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adarsh7448/Logistics-system-MADI/HEAD/static/transact.css -------------------------------------------------------------------------------- /templates/admin_dash.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adarsh7448/Logistics-system-MADI/HEAD/templates/admin_dash.html -------------------------------------------------------------------------------- /templates/create_transac.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adarsh7448/Logistics-system-MADI/HEAD/templates/create_transac.html -------------------------------------------------------------------------------- /templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adarsh7448/Logistics-system-MADI/HEAD/templates/login.html -------------------------------------------------------------------------------- /templates/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adarsh7448/Logistics-system-MADI/HEAD/templates/register.html -------------------------------------------------------------------------------- /templates/review.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adarsh7448/Logistics-system-MADI/HEAD/templates/review.html -------------------------------------------------------------------------------- /templates/srch_result.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adarsh7448/Logistics-system-MADI/HEAD/templates/srch_result.html -------------------------------------------------------------------------------- /templates/summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adarsh7448/Logistics-system-MADI/HEAD/templates/summary.html -------------------------------------------------------------------------------- /templates/user_dash.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adarsh7448/Logistics-system-MADI/HEAD/templates/user_dash.html -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- 1 | print("this file acts a sample code") 2 | -------------------------------------------------------------------------------- /test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adarsh7448/Logistics-system-MADI/HEAD/test.txt -------------------------------------------------------------------------------- /test2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adarsh7448/Logistics-system-MADI/HEAD/test2.py -------------------------------------------------------------------------------- /wireframe-LMS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adarsh7448/Logistics-system-MADI/HEAD/wireframe-LMS.png --------------------------------------------------------------------------------