├── .gitignore ├── Farmers_Portal ├── __init__.py ├── settings.py ├── urls.py └── wsgi.py ├── LICENSE ├── Procfile ├── README.md ├── User ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20171031_1709.py │ └── __init__.py ├── models.py ├── tests.py ├── urls.py └── views.py ├── crop ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20171031_1011.py │ ├── 0003_auto_20171031_1300.py │ ├── 0004_cropfarmer_remark.py │ └── __init__.py ├── models.py ├── tests.py ├── urls.py └── views.py ├── db.sqlite3 ├── home ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ └── __init__.py ├── models.py ├── tests.py ├── urls.py └── views.py ├── location ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_weather.py │ └── __init__.py ├── models.py ├── tests.py ├── urls.py └── views.py ├── manage.py ├── media_cdn ├── diseases │ ├── cotton-bacterial-blight.jpg │ ├── curl.jpg │ ├── download.jpg │ ├── redhot.jpg │ └── rust.jpg ├── motivational-text-16363.jpg ├── motivational-wallpaper-20.jpg └── readme.txt ├── post ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_post_image.py │ ├── 0003_comment.py │ ├── 0004_post_image_db.py │ ├── 0005_comment_author_farmer.py │ └── __init__.py ├── models.py ├── tests.py ├── urls.py └── views.py ├── requirements.txt ├── runtime.txt ├── static ├── css │ ├── bootstrap.min.css │ └── style.css ├── images │ ├── background.jpg │ ├── head_image.jpg │ ├── headeriitcse.png │ ├── mainImage.jpg │ ├── menu_back.jpg │ ├── postBack.jpg │ ├── postExpertBack.jpg │ ├── postFarmerBack.jpg │ ├── post_head_expert_back.jpg │ └── textHeaderBack.jpg └── js │ ├── bootstrap.min.js │ └── jquery.min.js └── templates ├── aboutus.html ├── base.html ├── create_edit_post.html ├── faq.html ├── index.html ├── location.html ├── messages_display.html ├── navbar_after_login.html ├── navbar_before_login.html ├── profile.html ├── query.html ├── register_crop.html ├── signup.html ├── view_crops.html └── view_post.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/.gitignore -------------------------------------------------------------------------------- /Farmers_Portal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Farmers_Portal/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/Farmers_Portal/settings.py -------------------------------------------------------------------------------- /Farmers_Portal/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/Farmers_Portal/urls.py -------------------------------------------------------------------------------- /Farmers_Portal/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/Farmers_Portal/wsgi.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn Farmers_Portal.wsgi:application --log-file - 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/README.md -------------------------------------------------------------------------------- /User/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /User/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/User/admin.py -------------------------------------------------------------------------------- /User/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/User/apps.py -------------------------------------------------------------------------------- /User/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/User/migrations/0001_initial.py -------------------------------------------------------------------------------- /User/migrations/0002_auto_20171031_1709.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/User/migrations/0002_auto_20171031_1709.py -------------------------------------------------------------------------------- /User/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /User/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/User/models.py -------------------------------------------------------------------------------- /User/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/User/tests.py -------------------------------------------------------------------------------- /User/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/User/urls.py -------------------------------------------------------------------------------- /User/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/User/views.py -------------------------------------------------------------------------------- /crop/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crop/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/crop/admin.py -------------------------------------------------------------------------------- /crop/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/crop/apps.py -------------------------------------------------------------------------------- /crop/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/crop/migrations/0001_initial.py -------------------------------------------------------------------------------- /crop/migrations/0002_auto_20171031_1011.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/crop/migrations/0002_auto_20171031_1011.py -------------------------------------------------------------------------------- /crop/migrations/0003_auto_20171031_1300.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/crop/migrations/0003_auto_20171031_1300.py -------------------------------------------------------------------------------- /crop/migrations/0004_cropfarmer_remark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/crop/migrations/0004_cropfarmer_remark.py -------------------------------------------------------------------------------- /crop/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crop/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/crop/models.py -------------------------------------------------------------------------------- /crop/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/crop/tests.py -------------------------------------------------------------------------------- /crop/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/crop/urls.py -------------------------------------------------------------------------------- /crop/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/crop/views.py -------------------------------------------------------------------------------- /db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/db.sqlite3 -------------------------------------------------------------------------------- /home/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /home/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/home/admin.py -------------------------------------------------------------------------------- /home/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/home/apps.py -------------------------------------------------------------------------------- /home/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /home/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/home/models.py -------------------------------------------------------------------------------- /home/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/home/tests.py -------------------------------------------------------------------------------- /home/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/home/urls.py -------------------------------------------------------------------------------- /home/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/home/views.py -------------------------------------------------------------------------------- /location/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /location/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/location/admin.py -------------------------------------------------------------------------------- /location/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/location/apps.py -------------------------------------------------------------------------------- /location/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/location/migrations/0001_initial.py -------------------------------------------------------------------------------- /location/migrations/0002_weather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/location/migrations/0002_weather.py -------------------------------------------------------------------------------- /location/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /location/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/location/models.py -------------------------------------------------------------------------------- /location/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/location/tests.py -------------------------------------------------------------------------------- /location/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/location/urls.py -------------------------------------------------------------------------------- /location/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/location/views.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/manage.py -------------------------------------------------------------------------------- /media_cdn/diseases/cotton-bacterial-blight.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/media_cdn/diseases/cotton-bacterial-blight.jpg -------------------------------------------------------------------------------- /media_cdn/diseases/curl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/media_cdn/diseases/curl.jpg -------------------------------------------------------------------------------- /media_cdn/diseases/download.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/media_cdn/diseases/download.jpg -------------------------------------------------------------------------------- /media_cdn/diseases/redhot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/media_cdn/diseases/redhot.jpg -------------------------------------------------------------------------------- /media_cdn/diseases/rust.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/media_cdn/diseases/rust.jpg -------------------------------------------------------------------------------- /media_cdn/motivational-text-16363.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/media_cdn/motivational-text-16363.jpg -------------------------------------------------------------------------------- /media_cdn/motivational-wallpaper-20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/media_cdn/motivational-wallpaper-20.jpg -------------------------------------------------------------------------------- /media_cdn/readme.txt: -------------------------------------------------------------------------------- 1 | This directory stores all the post images. -------------------------------------------------------------------------------- /post/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /post/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/post/admin.py -------------------------------------------------------------------------------- /post/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/post/apps.py -------------------------------------------------------------------------------- /post/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/post/migrations/0001_initial.py -------------------------------------------------------------------------------- /post/migrations/0002_post_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/post/migrations/0002_post_image.py -------------------------------------------------------------------------------- /post/migrations/0003_comment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/post/migrations/0003_comment.py -------------------------------------------------------------------------------- /post/migrations/0004_post_image_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/post/migrations/0004_post_image_db.py -------------------------------------------------------------------------------- /post/migrations/0005_comment_author_farmer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/post/migrations/0005_comment_author_farmer.py -------------------------------------------------------------------------------- /post/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /post/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/post/models.py -------------------------------------------------------------------------------- /post/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/post/tests.py -------------------------------------------------------------------------------- /post/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/post/urls.py -------------------------------------------------------------------------------- /post/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/post/views.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-2.7.14 2 | -------------------------------------------------------------------------------- /static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/static/css/style.css -------------------------------------------------------------------------------- /static/images/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/static/images/background.jpg -------------------------------------------------------------------------------- /static/images/head_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/static/images/head_image.jpg -------------------------------------------------------------------------------- /static/images/headeriitcse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/static/images/headeriitcse.png -------------------------------------------------------------------------------- /static/images/mainImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/static/images/mainImage.jpg -------------------------------------------------------------------------------- /static/images/menu_back.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/static/images/menu_back.jpg -------------------------------------------------------------------------------- /static/images/postBack.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/static/images/postBack.jpg -------------------------------------------------------------------------------- /static/images/postExpertBack.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/static/images/postExpertBack.jpg -------------------------------------------------------------------------------- /static/images/postFarmerBack.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/static/images/postFarmerBack.jpg -------------------------------------------------------------------------------- /static/images/post_head_expert_back.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/static/images/post_head_expert_back.jpg -------------------------------------------------------------------------------- /static/images/textHeaderBack.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/static/images/textHeaderBack.jpg -------------------------------------------------------------------------------- /static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /static/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/static/js/jquery.min.js -------------------------------------------------------------------------------- /templates/aboutus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/templates/aboutus.html -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/create_edit_post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/templates/create_edit_post.html -------------------------------------------------------------------------------- /templates/faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/templates/faq.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/location.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/templates/location.html -------------------------------------------------------------------------------- /templates/messages_display.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/templates/messages_display.html -------------------------------------------------------------------------------- /templates/navbar_after_login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/templates/navbar_after_login.html -------------------------------------------------------------------------------- /templates/navbar_before_login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/templates/navbar_before_login.html -------------------------------------------------------------------------------- /templates/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/templates/profile.html -------------------------------------------------------------------------------- /templates/query.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/templates/query.html -------------------------------------------------------------------------------- /templates/register_crop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/templates/register_crop.html -------------------------------------------------------------------------------- /templates/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/templates/signup.html -------------------------------------------------------------------------------- /templates/view_crops.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/templates/view_crops.html -------------------------------------------------------------------------------- /templates/view_post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandeydivesh15/Farmers-Portal/HEAD/templates/view_post.html --------------------------------------------------------------------------------