├── .gitignore ├── README.md ├── app.py ├── requirements.txt ├── static ├── Screenshot_1.png ├── Screenshot_2.png ├── Screenshot_3.png ├── Screenshot_4.png ├── Screenshot_5.png ├── Screenshot_6.png ├── Screenshot_7.png ├── favicon.svg └── index.css └── templates ├── add.html ├── complete.html ├── crop_allocation.html ├── crop_market.html ├── cropwise.html ├── css.html ├── farm.html ├── fertilizer.html ├── footer.html ├── index.html ├── labour.html ├── layout.html ├── login.html ├── navbar.html ├── pesticide.html ├── profit.html ├── seed.html ├── signup.html ├── temp.html ├── update.html └── warehouse.html /.gitignore: -------------------------------------------------------------------------------- 1 | /venv -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejas-gosavi/Farmer-Management-System/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejas-gosavi/Farmer-Management-System/HEAD/app.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejas-gosavi/Farmer-Management-System/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/Screenshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejas-gosavi/Farmer-Management-System/HEAD/static/Screenshot_1.png -------------------------------------------------------------------------------- /static/Screenshot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejas-gosavi/Farmer-Management-System/HEAD/static/Screenshot_2.png -------------------------------------------------------------------------------- /static/Screenshot_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejas-gosavi/Farmer-Management-System/HEAD/static/Screenshot_3.png -------------------------------------------------------------------------------- /static/Screenshot_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejas-gosavi/Farmer-Management-System/HEAD/static/Screenshot_4.png -------------------------------------------------------------------------------- /static/Screenshot_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejas-gosavi/Farmer-Management-System/HEAD/static/Screenshot_5.png -------------------------------------------------------------------------------- /static/Screenshot_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejas-gosavi/Farmer-Management-System/HEAD/static/Screenshot_6.png -------------------------------------------------------------------------------- /static/Screenshot_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejas-gosavi/Farmer-Management-System/HEAD/static/Screenshot_7.png -------------------------------------------------------------------------------- /static/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejas-gosavi/Farmer-Management-System/HEAD/static/favicon.svg -------------------------------------------------------------------------------- /static/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejas-gosavi/Farmer-Management-System/HEAD/static/index.css -------------------------------------------------------------------------------- /templates/add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejas-gosavi/Farmer-Management-System/HEAD/templates/add.html -------------------------------------------------------------------------------- /templates/complete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejas-gosavi/Farmer-Management-System/HEAD/templates/complete.html -------------------------------------------------------------------------------- /templates/crop_allocation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejas-gosavi/Farmer-Management-System/HEAD/templates/crop_allocation.html -------------------------------------------------------------------------------- /templates/crop_market.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejas-gosavi/Farmer-Management-System/HEAD/templates/crop_market.html -------------------------------------------------------------------------------- /templates/cropwise.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejas-gosavi/Farmer-Management-System/HEAD/templates/cropwise.html -------------------------------------------------------------------------------- /templates/css.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejas-gosavi/Farmer-Management-System/HEAD/templates/css.html -------------------------------------------------------------------------------- /templates/farm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejas-gosavi/Farmer-Management-System/HEAD/templates/farm.html -------------------------------------------------------------------------------- /templates/fertilizer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejas-gosavi/Farmer-Management-System/HEAD/templates/fertilizer.html -------------------------------------------------------------------------------- /templates/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejas-gosavi/Farmer-Management-System/HEAD/templates/footer.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejas-gosavi/Farmer-Management-System/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/labour.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejas-gosavi/Farmer-Management-System/HEAD/templates/labour.html -------------------------------------------------------------------------------- /templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejas-gosavi/Farmer-Management-System/HEAD/templates/layout.html -------------------------------------------------------------------------------- /templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejas-gosavi/Farmer-Management-System/HEAD/templates/login.html -------------------------------------------------------------------------------- /templates/navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejas-gosavi/Farmer-Management-System/HEAD/templates/navbar.html -------------------------------------------------------------------------------- /templates/pesticide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejas-gosavi/Farmer-Management-System/HEAD/templates/pesticide.html -------------------------------------------------------------------------------- /templates/profit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejas-gosavi/Farmer-Management-System/HEAD/templates/profit.html -------------------------------------------------------------------------------- /templates/seed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejas-gosavi/Farmer-Management-System/HEAD/templates/seed.html -------------------------------------------------------------------------------- /templates/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejas-gosavi/Farmer-Management-System/HEAD/templates/signup.html -------------------------------------------------------------------------------- /templates/temp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejas-gosavi/Farmer-Management-System/HEAD/templates/temp.html -------------------------------------------------------------------------------- /templates/update.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejas-gosavi/Farmer-Management-System/HEAD/templates/update.html -------------------------------------------------------------------------------- /templates/warehouse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejas-gosavi/Farmer-Management-System/HEAD/templates/warehouse.html --------------------------------------------------------------------------------