diff --git a/Thumbs.db b/Thumbs.db deleted file mode 100644 index c2d9217..0000000 Binary files a/Thumbs.db and /dev/null differ diff --git a/accounts/__init__.py b/account/__init__.py similarity index 100% rename from accounts/__init__.py rename to account/__init__.py diff --git a/account/__pycache__/__init__.cpython-37.pyc b/account/__pycache__/__init__.cpython-37.pyc new file mode 100644 index 0000000..47a0f59 Binary files /dev/null and b/account/__pycache__/__init__.cpython-37.pyc differ diff --git a/account/__pycache__/admin.cpython-37.pyc b/account/__pycache__/admin.cpython-37.pyc new file mode 100644 index 0000000..d522f0b Binary files /dev/null and b/account/__pycache__/admin.cpython-37.pyc differ diff --git a/account/__pycache__/apps.cpython-37.pyc b/account/__pycache__/apps.cpython-37.pyc new file mode 100644 index 0000000..2e01ca0 Binary files /dev/null and b/account/__pycache__/apps.cpython-37.pyc differ diff --git a/account/__pycache__/models.cpython-37.pyc b/account/__pycache__/models.cpython-37.pyc new file mode 100644 index 0000000..d252171 Binary files /dev/null and b/account/__pycache__/models.cpython-37.pyc differ diff --git a/accounts/__pycache__/urls.cpython-37.pyc b/account/__pycache__/urls.cpython-37.pyc similarity index 58% rename from accounts/__pycache__/urls.cpython-37.pyc rename to account/__pycache__/urls.cpython-37.pyc index 679ea3f..ce6aa87 100644 Binary files a/accounts/__pycache__/urls.cpython-37.pyc and b/account/__pycache__/urls.cpython-37.pyc differ diff --git a/accounts/__pycache__/views.cpython-37.pyc b/account/__pycache__/views.cpython-37.pyc similarity index 89% rename from accounts/__pycache__/views.cpython-37.pyc rename to account/__pycache__/views.cpython-37.pyc index 14ab4ad..adf0803 100644 Binary files a/accounts/__pycache__/views.cpython-37.pyc and b/account/__pycache__/views.cpython-37.pyc differ diff --git a/accounts/admin.py b/account/admin.py similarity index 100% rename from accounts/admin.py rename to account/admin.py diff --git a/account/apps.py b/account/apps.py new file mode 100644 index 0000000..f7b1d19 --- /dev/null +++ b/account/apps.py @@ -0,0 +1,5 @@ +from django.apps import AppConfig + + +class AccountConfig(AppConfig): + name = 'account' diff --git a/accounts/migrations/__init__.py b/account/migrations/__init__.py similarity index 100% rename from accounts/migrations/__init__.py rename to account/migrations/__init__.py diff --git a/account/migrations/__pycache__/__init__.cpython-37.pyc b/account/migrations/__pycache__/__init__.cpython-37.pyc new file mode 100644 index 0000000..a024f5c Binary files /dev/null and b/account/migrations/__pycache__/__init__.cpython-37.pyc differ diff --git a/accounts/models.py b/account/models.py similarity index 100% rename from accounts/models.py rename to account/models.py diff --git a/accounts/templates/login.html b/account/templates/login.html similarity index 94% rename from accounts/templates/login.html rename to account/templates/login.html index a184b62..11e6844 100644 --- a/accounts/templates/login.html +++ b/account/templates/login.html @@ -1,4 +1,4 @@ -{% extends 'base.html'%} +{% extends 'base.html' %} {% block content %} @@ -8,9 +8,6 @@
{% endif %} - - -

Log In

diff --git a/accounts/templates/signup.html b/account/templates/signup.html similarity index 93% rename from accounts/templates/signup.html rename to account/templates/signup.html index d7b3a2e..30ee9fe 100644 --- a/accounts/templates/signup.html +++ b/account/templates/signup.html @@ -1,4 +1,4 @@ -{% extends 'base.html'%} +{% extends 'base.html' %} {% block content %} @@ -10,7 +10,6 @@ {% endif %} -

Sign Up

@@ -35,4 +34,5 @@
-{% endblock %} + +{% endblock %} \ No newline at end of file diff --git a/accounts/tests.py b/account/tests.py similarity index 100% rename from accounts/tests.py rename to account/tests.py diff --git a/accounts/urls.py b/account/urls.py similarity index 75% rename from accounts/urls.py rename to account/urls.py index 0afe130..f2af8a5 100644 --- a/accounts/urls.py +++ b/account/urls.py @@ -1,9 +1,8 @@ - -from django.urls import path,include +from django.urls import path, include from . import views -urlpatterns = [ + +urlpatterns=[ path('signup',views.signup, name='signup'), path('login',views.login, name='login'), path('logout',views.logout, name='logout'), ] - diff --git a/accounts/views.py b/account/views.py similarity index 96% rename from accounts/views.py rename to account/views.py index be9bb5a..1e3ab8c 100644 --- a/accounts/views.py +++ b/account/views.py @@ -34,8 +34,4 @@ def login(request): def logout(request): if request.method =='POST': auth.logout(request) - return redirect('home') - - - - \ No newline at end of file + return redirect('home') diff --git a/accounts/__pycache__/__init__.cpython-37.pyc b/accounts/__pycache__/__init__.cpython-37.pyc deleted file mode 100644 index cb330f6..0000000 Binary files a/accounts/__pycache__/__init__.cpython-37.pyc and /dev/null differ diff --git a/accounts/__pycache__/admin.cpython-37.pyc b/accounts/__pycache__/admin.cpython-37.pyc deleted file mode 100644 index 9c62366..0000000 Binary files a/accounts/__pycache__/admin.cpython-37.pyc and /dev/null differ diff --git a/accounts/__pycache__/apps.cpython-37.pyc b/accounts/__pycache__/apps.cpython-37.pyc deleted file mode 100644 index 2912ef2..0000000 Binary files a/accounts/__pycache__/apps.cpython-37.pyc and /dev/null differ diff --git a/accounts/__pycache__/models.cpython-37.pyc b/accounts/__pycache__/models.cpython-37.pyc deleted file mode 100644 index aac8342..0000000 Binary files a/accounts/__pycache__/models.cpython-37.pyc and /dev/null differ diff --git a/accounts/apps.py b/accounts/apps.py deleted file mode 100644 index 9b3fc5a..0000000 --- a/accounts/apps.py +++ /dev/null @@ -1,5 +0,0 @@ -from django.apps import AppConfig - - -class AccountsConfig(AppConfig): - name = 'accounts' diff --git a/accounts/migrations/__pycache__/__init__.cpython-37.pyc b/accounts/migrations/__pycache__/__init__.cpython-37.pyc deleted file mode 100644 index 23e2782..0000000 Binary files a/accounts/migrations/__pycache__/__init__.cpython-37.pyc and /dev/null differ diff --git a/products/__init__.py b/hello/__init__.py similarity index 100% rename from products/__init__.py rename to hello/__init__.py diff --git a/hello/__pycache__/__init__.cpython-37.pyc b/hello/__pycache__/__init__.cpython-37.pyc new file mode 100644 index 0000000..74fb8ee Binary files /dev/null and b/hello/__pycache__/__init__.cpython-37.pyc differ diff --git a/hello/__pycache__/admin.cpython-37.pyc b/hello/__pycache__/admin.cpython-37.pyc new file mode 100644 index 0000000..2f7e5ef Binary files /dev/null and b/hello/__pycache__/admin.cpython-37.pyc differ diff --git a/hello/__pycache__/apps.cpython-37.pyc b/hello/__pycache__/apps.cpython-37.pyc new file mode 100644 index 0000000..a379ad9 Binary files /dev/null and b/hello/__pycache__/apps.cpython-37.pyc differ diff --git a/hello/__pycache__/models.cpython-37.pyc b/hello/__pycache__/models.cpython-37.pyc new file mode 100644 index 0000000..abad139 Binary files /dev/null and b/hello/__pycache__/models.cpython-37.pyc differ diff --git a/hello/__pycache__/urls.cpython-37.pyc b/hello/__pycache__/urls.cpython-37.pyc new file mode 100644 index 0000000..bf7f003 Binary files /dev/null and b/hello/__pycache__/urls.cpython-37.pyc differ diff --git a/hello/__pycache__/views.cpython-37.pyc b/hello/__pycache__/views.cpython-37.pyc new file mode 100644 index 0000000..f9f934f Binary files /dev/null and b/hello/__pycache__/views.cpython-37.pyc differ diff --git a/products/admin.py b/hello/admin.py similarity index 67% rename from products/admin.py rename to hello/admin.py index ed640b0..8733484 100644 --- a/products/admin.py +++ b/hello/admin.py @@ -2,4 +2,4 @@ from django.contrib import admin from .models import Product -admin.site.register(Product) \ No newline at end of file +admin.site.register(Product) diff --git a/hello/apps.py b/hello/apps.py new file mode 100644 index 0000000..7343428 --- /dev/null +++ b/hello/apps.py @@ -0,0 +1,5 @@ +from django.apps import AppConfig + + +class HelloConfig(AppConfig): + name = 'hello' diff --git a/products/migrations/0001_initial.py b/hello/migrations/0001_initial.py similarity index 59% rename from products/migrations/0001_initial.py rename to hello/migrations/0001_initial.py index bbe7883..9851116 100644 --- a/products/migrations/0001_initial.py +++ b/hello/migrations/0001_initial.py @@ -1,4 +1,4 @@ -# Generated by Django 2.2 on 2020-05-19 11:08 +# Generated by Django 2.2 on 2020-06-08 14:45 from django.conf import settings from django.db import migrations, models @@ -15,15 +15,14 @@ class Migration(migrations.Migration): operations = [ migrations.CreateModel( - name='Product', + name='hello', fields=[ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), - ('title', models.CharField(max_length=255)), - ('pub_date', models.DateTimeField()), - ('url', models.TextField()), - ('image', models.ImageField(upload_to='')), - ('icon', models.ImageField(upload_to='')), - ('votes_total', models.IntegerField()), + ('Name', models.CharField(max_length=255)), + ('Full_Address', models.TextField(max_length=300)), + ('image', models.ImageField(upload_to='images/')), + ('self_image', models.ImageField(upload_to='images/')), + ('votes_total', models.IntegerField(default=1)), ('hunter', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL)), ], ), diff --git a/hello/migrations/0002_auto_20200608_2301.py b/hello/migrations/0002_auto_20200608_2301.py new file mode 100644 index 0000000..dade8e6 --- /dev/null +++ b/hello/migrations/0002_auto_20200608_2301.py @@ -0,0 +1,31 @@ +# Generated by Django 2.2 on 2020-06-08 17:31 + +from django.conf import settings +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + migrations.swappable_dependency(settings.AUTH_USER_MODEL), + ('hello', '0001_initial'), + ] + + operations = [ + migrations.CreateModel( + name='Product', + fields=[ + ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('Name', models.CharField(max_length=255)), + ('Full_Address', models.TextField(max_length=300)), + ('image', models.ImageField(upload_to='images/')), + ('self_image', models.ImageField(upload_to='images/')), + ('votes_total', models.IntegerField(default=1)), + ('hunter', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL)), + ], + ), + migrations.DeleteModel( + name='hello', + ), + ] diff --git a/products/migrations/__init__.py b/hello/migrations/__init__.py similarity index 100% rename from products/migrations/__init__.py rename to hello/migrations/__init__.py diff --git a/hello/migrations/__pycache__/0001_initial.cpython-37.pyc b/hello/migrations/__pycache__/0001_initial.cpython-37.pyc new file mode 100644 index 0000000..f353087 Binary files /dev/null and b/hello/migrations/__pycache__/0001_initial.cpython-37.pyc differ diff --git a/hello/migrations/__pycache__/0002_auto_20200608_2301.cpython-37.pyc b/hello/migrations/__pycache__/0002_auto_20200608_2301.cpython-37.pyc new file mode 100644 index 0000000..42ca805 Binary files /dev/null and b/hello/migrations/__pycache__/0002_auto_20200608_2301.cpython-37.pyc differ diff --git a/hello/migrations/__pycache__/__init__.cpython-37.pyc b/hello/migrations/__pycache__/__init__.cpython-37.pyc new file mode 100644 index 0000000..c7de222 Binary files /dev/null and b/hello/migrations/__pycache__/__init__.cpython-37.pyc differ diff --git a/hello/models.py b/hello/models.py new file mode 100644 index 0000000..092a1b1 --- /dev/null +++ b/hello/models.py @@ -0,0 +1,24 @@ +from django.db import models +from django.contrib.auth.models import User + +# Create your models here. +class Product(models.Model): + Name= models.CharField(max_length=255) + Full_Address=models.TextField(max_length=300) + image=models.ImageField(upload_to='images/') + self_image=models.ImageField(upload_to='images/') + votes_total=models.IntegerField(default=1) + hunter=models.ForeignKey(User,on_delete=models.CASCADE) + + def _str_(self): + return self.Name + + def summary(self): + return self.Full_Address[:100] + + + + + + + diff --git a/products/templates/create.html b/hello/templates/create.html similarity index 53% rename from products/templates/create.html rename to hello/templates/create.html index 21ffde2..04e02c5 100644 --- a/products/templates/create.html +++ b/hello/templates/create.html @@ -1,4 +1,4 @@ - + {% extends 'base.html' %} {% block content %} @@ -13,28 +13,26 @@
{% csrf_token %} -Title: +Name:
- +
-Body: +Full_Address:
- -
-URL: -
- -
-Icon: -
- +
Image:
- + +
+self_image: +
+

- +
+ + {% endblock %} \ No newline at end of file diff --git a/products/templates/detail.html b/hello/templates/detail.html similarity index 69% rename from products/templates/detail.html rename to hello/templates/detail.html index ffe15e1..32064f1 100644 --- a/products/templates/detail.html +++ b/hello/templates/detail.html @@ -4,16 +4,16 @@
- +
-

{{product.title}}

+

{{product.Name}}

- +
@@ -23,23 +23,21 @@
-

Hunted by {{ product.hunter.username }}

-
-
-

{{ product.pub_date_pretty }}

+
Details given by {{ product.hunter.username }}
-

{{ product.body }}

+

{{ product.Full_Address }}

-
{% csrf_token %}
+ {% endblock %} + diff --git a/hello/templates/help.html b/hello/templates/help.html new file mode 100644 index 0000000..60ac2df --- /dev/null +++ b/hello/templates/help.html @@ -0,0 +1,142 @@ +{% extends 'base.html' %} + +{% block content %} +{% load staticfiles %} + + +

ALL-INDIA-HELPINE-NUMBER

+       +
+ +

Hello this website is for the help of people who are + stuck in corona-pandemic situation.Here is the list + of all the helpline-no of India, State-Wise where + you can call from anywhere for help.They are helped + by the team of their respective state.Here is our + hero Sonu sood number is also given.This is the platform + which I provide to you where you can call for help ,If + you are stuck in any problem,they must help you. There is one extra bonus for you all + get district-wise + help and you also get help by my team also.As my chain is growing + day by day I try to help you in all over india who are in problem + through my team or by my website or through any other medium.If you stuck in any problem please + feel free to call me I try my best to help you in anyway. + +

+
+
+

GO! CALL FOR HELP.

+
+
SONU SOOD NUMBER-18001213711,Whatsapp-No-9321472118 +
+
MY NUMBER-6204488083, whatsapp-no-6204488083
+ +

State/UT Helpline No.

+Andaman & Nicobar 03192-232102 +
+Andhra Pradesh 0866-2410978 +
+Arunachal Pradesh 9436055743 +
+Assam 6913347770 +
+Bihar 104 +
+Chandigarh 9779558282 +
+Chhattisgarh 104 +
+Dadra Nagar Haveli 104 +
+Delhi 011-22307145 +
+Goa 104 +
+Gujarat 104 +
+Haryana 8558893911 +
+Himachal Pradesh 104 +
+Jammu 01912520982 +
+Jharkhand 104 +
+Karnataka 104 +
+Kashmir 01942440283 +
+Kerala 0471-2552056 +
+Ladakh 01982256462 +
+Lakshadweep 104 +
+Madhya Pradesh 104 +
+Maharashtra 020-26127394 +
+Manipur 3852411668 +
+Meghalaya 108 +
+Mizoram 102 +
+Nagaland 7005539653 +
+Odisha 9439994859 +
+Puducherry 104 +
+Punjab 104 +
+Rajasthan 0141-2225624 +
+Sikkim 104 +
+Tamil Nadu 044-29510500 +
+Telangana 104 +
+Tripura 0381-2315879 +
+Uttarakhand 104 +
+Uttar Pradesh 18001805145 +
+West Bengal 1800313444222, 03323412600 +
+
+

The central helpline number: 011-23978046

+
+ + +
+
CLICK ON IMAGE OF AAROGYA SETU TO DOWNLOAD THE APP.
+ + FOR ANDROID USER CLICK ON FIRST IMAGE    + + + FOR MAC USER CLICK ON SECOND IMAGE + +
DOWNLOAD AAROGYA SETU APP +
+ AND CHECK YOURSELF EVERYTIME +
+ STAY HOME,STAY SAFE. +
+
+
+ +

GO! Follow me for more updates.Click on the facbook and instagram icon.

+
+ +     +  + + + + + + +{% endblock %} diff --git a/hello/templates/home.html b/hello/templates/home.html new file mode 100644 index 0000000..8ada45e --- /dev/null +++ b/hello/templates/home.html @@ -0,0 +1,261 @@ +{% extends 'base.html'%} + +{% block content %} +{% load staticfiles %} + +

HERE ARE THE GUIDELINES HOW TO USE WEBSITE :

+
+
1.First you help the poor/needy people and click photo with him/her.
+ +
2.Sign In.
+ +
3.Log In.
+ +
4.When you logged in click on create details.
+ +
5.Give your NAME,FULL_ADDRESS.In IMAGE field add the photo of needy people with you whom you help and in SELF_IMAGE add your own image.
+ +
6. Click on Add details button.
+ +
7.Then click on Rohit-NGO or ICON of ROHIT-NGO, given on the top + of website .It will redirect you to homepage where you see all the photos given by the people.
+ +
8.Upvote the photo which you like most.
+ +
9.If you want to become volunteer of my NGO and for more updates of website, + then join the group via given whatsapp icon.
+
+ + +
CLICK ON WHATSAPP ICON AND BECOME VOLUNTEER AND BE READY TO HELP THE NEEDY PEOPLE.
+

GO ON! CLICK THE WHATSAPP ICON.

+
+

IF YOU WANT TO DONATE MONEY FOR THE HELP OF NEEDY PEOPLE SCAN THE IMAGE/QR-CODE GIVEN BELOW :CONTRIBUTE IN ROHIT-NGO + AS MUCH AS YOU CAN FOR THE HELP OF NEEDY/POOR PEOPLE.OUR NGO WILL HELP ALL THE PEOPLE WHO ARE SUFFER FRO SUCH + EPIDEMIC.WE TRY OUR BEST.SO PLEASE GO AHEAD AND TELL PEOLE TO CONTRIBUTE IN ROHIT-NGO. +

+ +

HERE IS MY G-PAY,PHONE-PE NUMBER.(+916204488083).YOU CAN ALSO DONATE MONEY FOR THE HELP OF NEEDY PEOPLE ON GIVEN NUMBER.

+
+ +

ROLE OF VOLUNTEER:

+

The role of the volunteer is to help the needy/poor people of their respective city/ + town/village and upload the photo on my website.You can also raise fund through public + and + you can use your own fund to help the people.Upload the photo of your own with the person whom you help. + It is mandatory. + + +

+
+
+ + + + + +{% for product in hello.all %} + + + +
+
+ +
+
+

{{product.Name}}

+
{{product.Full_Address}}
+
+ +
+ + +
+ {% csrf_token %} + +
+ +{% endfor %} +
+
+ + + +
+ AS WE KNOW THAT THERE ARE MANY POOR PEOPLE IN INDIA AND ALL OVER THE WORLD + DUE TO THIS EPIDEMIC .ALL COUNTRY SUFFERED FROM ECONOMIC + CRISIS.SO IT'S OUR RESPONSIBILITY TO MAKE OUR COUNTRY GOOD IN ECONOMIC CONDITION. + IT'S LIKE A CHALLANGE FOR ALL OF US.WE SHOULD HELP AT LEAST 10 POOR PEOPLE BY GIVING + THEM ANYTHING ONLY HELP IN ANYWAY.HERE IS GOOD PLATFORM I PROVIDE TO YOU.WHEN YOU HELP + THE PERSON ,YOU CLICK PHOTO WITH HIM/HER AND UPLOAD ON THIS WEBSITE.IN THIS WAY YOU BECOME PART OF MY TEAM. + AND HERE IN THE WEBSITE WHERE YOU SEE YOUR ALL THE PHOTOS OF PERSON WHOM YOU HELP, TAKE PART IN THIS GREAT WORK. + GO AHEAD! AND ALSO AWARE PEOPLE TO HELP THE NEEDY/POOR PEOPLE. +
+
+
+ + +

ABOUT CORONAVIRUS

+    +    +   + + +
Coronaviruses typically affect the respiratory tracts of birds and mammals, + including humans. Doctors associate them with the common cold, bronchitis, pneumonia, + severe acute respiratory syndrome (SARS), and coronavirus disease 2019 (COVID-19). + These viruses can also affect the gut. + +Coronaviruses usually cause the common cold, though they can be responsible for more severe illnesses. + +Over the past 80 years, scientists have found that these viruses can infect mice, +rats, dogs, cats, turkeys, horses, pigs, + and cattle. Sometimes, these animals transmit the viruses to humans. + +Most recently, authorities identified a new coronavirus outbreak in China +that has now reached other countries. + The virus is called severe acute respiratory syndrome coronavirus 2 (SARS-CoV-2) and it can cause COVID-19. + +In this article, we explain the different types of human coronavirus, their symptoms, + and how people transmit them. We also focus on three particularly dangerous diseases caused by coronaviruses: + COVID-19, SARS, and Middle East respiratory syndrome (MERS). + +Stay informed with live updates on the current COVID-19 outbreak and visit our coronavirus hub for more advice on prevention and treatment. + +

What is a coronavirus?

+Covering the mouth when sneezing can help stop the spread of coronaviruses. +Researchers first identified a coronavirus in 1937, isolating one that was responsible for a type of bronchitis in birds that had the potential to devastate poultry stocks. + +Scientists found evidence of human coronaviruses in the 1960s, in the noses of people with the common cold. + +Human coronaviruses that are particularly prevalent include 229E, NL63, OC43, and HKU1. + +The name “coronavirus” comes from the crown-like projections on their surfaces. “Corona” in Latin means “halo” or “crown.” + +Among humans, coronavirus infections most often occur during the winter months and early spring. + +

COVID-19

+In 2019, the Centers for Disease Control and Prevention (CDC) started monitoring the outbreak of a new coronavirus, SARS-CoV-2, which causes COVID-19. Authorities first identified the virus in Wuhan, China. + +Since then, the virus has spread to nearly every country, leading the World Health Organization (WHO) to declare a pandemic. + +The new coronavirus has been responsible for millions of infections globally, causing hundreds of thousands of deaths. The United States has seen the highest number of these deaths. + +The first people with COVID-19 had links to an animal and seafood market. This suggests that animals initially transmitted the virus to humans. Then, people with no connections to the market developed the disease, confirming that humans can pass the virus to each other. + +Most people who get COVID-19 will have a mild form of the disease. According to the WHO, around 80% of people who get COVID-19 will recover without needing hospitalization. + +The remaining 20% become seriously ill and develop difficulty breathing. + +Some groups are more at risk of severe disease, including older adults and people with underlying medical concerns, including high blood pressure, heart and lung problems, diabetes, and cancer. + +The mortality rate varies between countries. In the U.S., the death rate is around 6%. + +According to the CDC, children are not at higher risk of COVID-19 than adults. + +Pregnant women appear to have the same risk of COVID-19 as other adults. However, during pregnancy, women have a higher risk of severe illness from viruses that are similar to SARS-CoV-2 and influenza. + +The CDC also recommend that infants born to women with suspected or confirmed COVID-19 are put into isolation. +
+
+ +

Symptoms of COVID-19

+    +    + + +
People may start to experience symptoms 2–14 days after exposure to the virus. Symptoms may include:
+a fever +chills +a cough +shortness of breath or difficulty breathing +sore throat +congestion or a runny nose +fatigue +headache +muscle pain +new loss of taste or smell +nausea or vomiting +diarrhea +No vaccine is currently available for COVID-19. However, scientists have now replicated the virus. This could allow for early detection and treatment in people who have the virus but are not experiencing symptoms. + +According to the CDC, the following groups have a higher risk of developing serious illness from COVID-19: + +people aged 65 years or older +people living in nursing homes or care facilities +people of any age who have serious underlying medical conditions, including chronic lung disease, serious heart conditions, severe obesity, a compromised immune system, or diabetes +The CDC note that although there have been reports of complications in young children, these are rare. COVID-19 most commonly produces mild symptoms in children. + + + + +

General symptoms of coronavirus infections

+Cold- or flu-like symptoms usually set in around 2–4 days after the infection develops. Typically, the symptoms are mild, though they vary from person to person. In some people, coronavirus infections are fatal. + +Symptoms may include: + +a runny nose +a headache +a cough +a fever +a sore throat +generally feeling unwell +While scientists can easily cultivate rhinoviruses — which also cause the common cold — in the laboratory, this is not the case with coronaviruses. This makes it difficult to gauge the impact of these pathogens. + +There is currently no cure for the cold-like illnesses caused by coronaviruses. Treatments include self-care and over-the-counter medications. + +Taking the following steps may help: + +resting and avoiding overexertion +drinking plenty of water +avoiding smoking and smoky areas +taking acetaminophen (Tylenol) to reduce pain and a fever +using a clean humidifier or cool mist vaporizer +A doctor can identify the virus responsible in a sample of fluid from a person’s body, such as a sample of blood or mucus from the nose. + +

Types

+Coronaviruses belong to the subfamily Coronavirinae in the family Coronaviridae. + +Different types of coronavirus vary, in terms of the severity of disease that they cause and how far they spread. + +Doctors currently recognize seven types of coronavirus that can infect humans. + +Common types include: + +229E (alpha coronavirus) +NL63 (alpha coronavirus) +OC43 (beta coronavirus) +HKU1 (beta coronavirus) +Rarer strains that cause more severe illnesses include MERS-CoV, which causes the disease MERS, and SARS-CoV, the virus responsible for SARS. + +In 2019, a new strain, called SARS-CoV-2, started circulating, causing the disease COVID-19. + +

Transmission

+The CDC recommend that all people wear cloth face masks in public places where it is difficult to maintain a 6-foot (2-meter) distance from others. This will help slow the spread of the virus from asymptomatic people and people who do not know that they have contracted it. People should wear cloth face masks while continuing to practice physical distancing. Instructions for making masks at home are available here. Note: It is critical that surgical masks and N95 respirators are reserved for healthcare workers. + +Researchers believe that the viruses transmit via fluids in the respiratory system, such as mucus. + +For example, a coronavirus can spread when a person: + +coughs or sneezes without covering their mouth, dispersing droplets into the air +touches someone who has the infection +touches a surface that has the virus, then touches their own nose, eyes, or mouth +Some animal coronaviruses may spread to humans through contact with feces, though it is unclear whether human coronaviruses can spread in the same way. + +Coronaviruses will infect most people at some point. + +To prevent transmission, people with symptoms should stay at home, rest, and avoid coming into close contact with other people. + +Covering the mouth and nose with a tissue or handkerchief while coughing or sneezing can also help prevent transmission. It is important to dispose of used tissues right away and maintain proper hygiene around the home. +
+
+

GO! Follow me for more updates.Click on the facbook and instagram icon.

+
+Facebook +    Instagram + + + +{% endblock %} \ No newline at end of file diff --git a/hello/templates/warriors.html b/hello/templates/warriors.html new file mode 100644 index 0000000..0608aea --- /dev/null +++ b/hello/templates/warriors.html @@ -0,0 +1,223 @@ +{% extends 'base.html' %} + +{% block content %} +{% load staticfiles %} +

CORONA WARRIORS DETAILS

+
+    +    +   + +

Here are some unbounded story of corona warriors ,They came out and save the + people in such a epidemic situation.A big salute to doctor,army,police and cleaners. + and all the people who help the others.This type of epidemic came after 100 years + in the whole world.All are suffering from this epidemic ,mainly poor they have no money + and home ,they move from here to there to save their own life from corona.More than 2 months there is lockdown in our country + no one do anything .It's our responsibility to save their life by helping each other + in such pandemic situation.Our country is great ,Here are the some story of many unsung warriors + who help all the people who are suffered from this epidemic. + If you are such a great human being and able to help others, + help at least 1 one needy people.Then you will become good human being in your own eyesight . +

+
+   +   +   +

+ 1.Emergency measures +Following the widespread outbreak of coronavirus in India, + the country has gone on lockdown to combat the virus - + a move that has led to disruption across economic strata. + To help combat this, Finance Minister Nirmala Sitharaman had announced the following measures. + +Agencies +
+
+ +2.Relief package +A relief package worth Rs 1.7 +lakh crore has been earmarked +for the needy and will be disbursed as the government sees fit. + +
+
+3.Coverage +The relief package will cover close to 80 crore people, + ensuring their safety during the lockdown and for however + more it might extend. + +
+
+4.Benefits +The Pradhan Mantri Gareeb Kalyan Yojana will give + the people covered under it five kg of rice/wheat for three months. +
+
+5.Insurance +Included in this fund is insurance cover for people working in healthcare, +, with each worker getting a Rs 50 lakh insurance cover for the next three months. + +Agencies + +
+
+ + + + +

+
+   +   +   +
+ “Migrant workers have helped build our roads, homes and offices. + We cannot stand and watch them be homeless,” says actor Sonu Sood. + Each day since the COVID-19 lockdown in Mumbai, the actor has been organising buses + for migrant workers to travel from Mumbai to their respective hometowns. +As part of his ‘Ghar Bhejo’ campaign, he has helped approximately 12,000 migrants reach home, + and arrangements have been made for another 45,000. He responds to questions over a voice note, + amid what he calls a ‘crazily busy schedule’ that keeps him awake nearly 22 hours a day. + Each day, at least around 45,000 people are provided food and water as well. +
+
+   +   +   +
+ Hindustani Bhau stands in solidarity with the nation and has supported India + to combat the coronavirus pandemic. Vikas Fhatka aka Hindustani Bhau of Bigg Boss 13 + fame also came forward to feed the street dogs during the lockdown due to + the coronavirus pandemic. His social media account was flooded with love + , social media users praised him for the kindness act. + +Distributing food and water to the dogs gives him immense pleasure. + He wants to ensure that no one will go hungry. Several people lauded his initiative. + Thanks to the hero who stepped in at the right place and at the right time on the ground + and helped to bring some good optimism to an otherwise serious situation. +
+
+   +   +   +
+ TV actor Ronit Roy became the centre of attention after he revealed in a recent + interview that he has been taking care of 100 families despite not making money + since January. Mr Roy mentioned that he runs a small business, which has been shut + since March given the nationwide lockdown due to the coronavirus pandemic. + In an interview with ETimes, Ronit Roy said, "Personally, I haven't made money + since January. I have a small business which was running, and is now shut since March. + Whatever I have, I am selling things to support about 100 families that I am responsible for." + +
+
+   +   +   +
+Praising the actor,“Thank you @BeingSalmanKhan bhai for + being there for our frontline warriors, thank you @CMOMaharashtra + @AUThackeray ji @MumbaiPolice @CPMumbaiPolice for being there for one and all... + FRSH sanitisers to be distributed to all our frontline warriors in the Police Dept.” + +Fans were moved by Salman’s gesture. One wrote: “Megastar +#SalmanKhan Donates Huge 1,00,000 (1 Lakh) Bottles of FRSH SANITIZERS + To Police Personnels in Mumbai Amidst This Coronavirus Lockdown! #LoveUBhaijaan!” + + +Another fan wrote: “The #SalmanKhan Man with the golden heart that’s +why he most lovable superstar in country hattoff God bless you. always love #BeingHuman” +
+
+   +   +   +
+ ndia pacer Mohammed Shami said he is trying his best to help the needy, + especially daily-wage workers during the Covid-19 lockdown. + +Mohammed Shami said he saw a migrant labourer fainting in hunger through CCTV + visuals and that he immediately rushed out of his house to feed him. + Shami said the migrant worker was on his way to Bihar from Rajasthan via Lucknow. + +The Covid-19 pandemic has brought normal lives to a grinding halt across the globe. +Several countries have enforced lockdown to combat the spread of the novel coronavirus. +In India, the lockdown has had a drastic impact on daily-wage labourers, especially the ones in major cities. + +As of April 15, more than 11,900 people have been infected by the virus which has led +to more than 390 deaths in India. + +"He was coming from Rajasthan. Just imagine he is supposed to go to Bihar +which is so far from Lucknow too. He has no means to commute and I saw in my home CCTV camera that he fainted in hunger and was close to my door. So I provided him with food and helped him out," Shami said during an Instagram live chat. + +"I am trying to help as much as I can. + There are migrant workers here who are really struggling to meet ends. + The highway is also near my house so I can see people having a tough time. I feel I should help and I am doing as much as possible." +
+
+   +   +   +
+Bollywood actor Akshay Kumar has been in the forefront helping + the corona warriors and daily wage workers ever since the coronavirus outspread. + The actor has once again come forward to help the Mumbai + Police to detect COVID-19 symptoms by donating about 1000 wrist bands. + Akshay is the brand ambassador of a healthcare brand and he has given + wrist bands that help detect coronavirus symptoms. according to the report in TOI, + Mumbai Police will be the first organization in the world enabled to remotely track + and manage the health of its personnel with the preventive health platform. + +The wrist bands that Akshay Kumar has donated will help detect symptoms like blood pressure, + heart rate, sleep and will also keep a check on step count and calories. + It will also detect if the temperature of a person is higher than normal or not. + Reports also claim that the sensor-laden wrist bands which Akshay Kumar has donated + to the Mumbai Police will only be available to corona warriors during this time. +
+
+   +   +   + +
+ MUMBAI: Mumbai police commissioner Param Bir Singh on Saturday informed that India cricket skipper Virat Kohli and his wife actor Anushka Sharma have contributed Rs 5 lakh each for police welfare amid the novel coronavirus outbreak. + +"Thank you, @imVkohli and @AnushkaSharma for contributing Rs. 5 lacs each towards the welfare of Mumbai Police personnel. Your contribution will safeguard those at the frontline in the fight against Coronavirus. #MumbaiPoliceFoundation," Singh tweeted from h .. + + + +Earlier, Kohli and Sharma had given undisclosed amounts to the PM CARES +fund and Maharashtra Chief Minister's Relief Fund to support the fight against Covid-19. + +Maharashtra has the highest number of coronavirus positive cases in the country. + + +
+
+
+ +
+ + +
+
+
+ +

+AS THERE ARE MANY HEROES WHO INSPIRE US ,HOW TO HELP OTHERS +THERE ARE MANY STORIES WHO TELL US ABOUT THAT .WE ARE INDIANS +AND READY TO HELP OTHERS IF WE FIND ANYONE IN PROBLEM IN THE WHOLE +WORLD, WE ARE READY TO HELP ,SO PLEASE TAKE OATH WITH ME,THAT WE ALWAYS TAKE CARE OF EACH OTHERS +AND READY TO FIGHT SUCH EPIDEMIC.SO YOU ALSO BECOME HERO FOR OTHERS BY DOING SUCH SMALL- +SMALL THINGS.SO GO AHEAD WITH OUR COUNTRY CONTRIBUTE WHATEVER YOU CAN DO AND TRY YOUR BEST EFFORT. +

+
+ + +

AATAM NIRBHAR BHARAT!

+
+
+ + + +{% endblock %} diff --git a/products/tests.py b/hello/tests.py similarity index 100% rename from products/tests.py rename to hello/tests.py diff --git a/products/urls.py b/hello/urls.py similarity index 51% rename from products/urls.py rename to hello/urls.py index eb9397f..460df03 100644 --- a/products/urls.py +++ b/hello/urls.py @@ -2,7 +2,10 @@ from django.urls import path from . import views urlpatterns=[ + path('help',views.help, name='help'), + path('warriors',views.warriors, name='warriors'), path('create',views.create, name='create'), - path('/',views.detail, name='detail'), + path('',views.detail, name='detail'), path('/upvote',views.upvote, name='upvote'), -] \ No newline at end of file + +] \ No newline at end of file diff --git a/hello/views.py b/hello/views.py new file mode 100644 index 0000000..a53e5b2 --- /dev/null +++ b/hello/views.py @@ -0,0 +1,46 @@ +from django.shortcuts import render,redirect, get_object_or_404 +from django.contrib.auth.decorators import login_required +from .models import Product + + +def home(request): + hello=Product.objects + return render(request,'home.html',{'hello':hello}) + +def help(request): + return render(request,'help.html') + +def warriors(request): + return render(request,'warriors.html') + + +@login_required +def create(request): + if request.method == 'POST': + if request.POST['Name'] and request.POST['Full_Address'] and request.FILES['image'] and request.FILES['self_image']: + product = Product() + product.Name = request.POST['Name'] + product.Full_Address = request.POST['Full_Address'] + product.image = request.FILES['image'] + product.self_image = request.FILES['self_image'] + product.hunter = request.user + product.save() + return redirect('/hello/'+str (product.id)) + else: + return render(request, 'create.html',{'error':'All fields are required.'}) + else: + return render(request, 'create.html') + + +def detail(request,product_id): + product= get_object_or_404(Product,pk=product_id) + return render(request, 'detail.html',{'product':product}) + + +@login_required(login_url="/account/signup") +def upvote(request,product_id): + if request.method=='POST': + product= get_object_or_404(Product,pk=product_id) + product.votes_total+=1 + product.save() + return redirect('/hello/'+str(product.id)) \ No newline at end of file diff --git a/heroine/__pycache__/__init__.cpython-37.pyc b/heroine/__pycache__/__init__.cpython-37.pyc index e1fa05c..f3e4416 100644 Binary files a/heroine/__pycache__/__init__.cpython-37.pyc and b/heroine/__pycache__/__init__.cpython-37.pyc differ diff --git a/heroine/__pycache__/settings.cpython-37.pyc b/heroine/__pycache__/settings.cpython-37.pyc index d793af0..57ce736 100644 Binary files a/heroine/__pycache__/settings.cpython-37.pyc and b/heroine/__pycache__/settings.cpython-37.pyc differ diff --git a/heroine/__pycache__/urls.cpython-37.pyc b/heroine/__pycache__/urls.cpython-37.pyc index a43bc66..a5e0e69 100644 Binary files a/heroine/__pycache__/urls.cpython-37.pyc and b/heroine/__pycache__/urls.cpython-37.pyc differ diff --git a/heroine/__pycache__/wsgi.cpython-37.pyc b/heroine/__pycache__/wsgi.cpython-37.pyc index 4ac79ec..a8d426d 100644 Binary files a/heroine/__pycache__/wsgi.cpython-37.pyc and b/heroine/__pycache__/wsgi.cpython-37.pyc differ diff --git a/heroine/settings.py b/heroine/settings.py index 8e62757..0858230 100644 --- a/heroine/settings.py +++ b/heroine/settings.py @@ -37,8 +37,8 @@ INSTALLED_APPS = [ 'django.contrib.sessions', 'django.contrib.messages', 'django.contrib.staticfiles', - 'products.apps.ProductsConfig', - 'accounts.apps.AccountsConfig', + 'hello.apps.HelloConfig', + 'account.apps.AccountConfig', ] MIDDLEWARE = [ @@ -127,7 +127,6 @@ USE_TZ = True # https://docs.djangoproject.com/en/2.2/howto/static-files/ - STATICFILES_DIRS=[ os.path.join(BASE_DIR, 'heroine/static/') ] @@ -137,10 +136,13 @@ STATIC_ROOT=os.path.join(BASE_DIR, 'static') STATIC_URL = '/static/' - MEDIA_ROOT=os.path.join(BASE_DIR, 'media') MEDIA_URL = '/media/' + + + + diff --git a/heroine/static/Thumbs.db b/heroine/static/Thumbs.db deleted file mode 100644 index 0c7120d..0000000 Binary files a/heroine/static/Thumbs.db and /dev/null differ diff --git a/heroine/static/army.jpg b/heroine/static/army.jpg new file mode 100644 index 0000000..3a6e452 Binary files /dev/null and b/heroine/static/army.jpg differ diff --git a/heroine/static/b1.jpg b/heroine/static/b1.jpg new file mode 100644 index 0000000..b55e29b Binary files /dev/null and b/heroine/static/b1.jpg differ diff --git a/heroine/static/b2.jpg b/heroine/static/b2.jpg new file mode 100644 index 0000000..59924aa Binary files /dev/null and b/heroine/static/b2.jpg differ diff --git a/heroine/static/b3.jpg b/heroine/static/b3.jpg new file mode 100644 index 0000000..6315a87 Binary files /dev/null and b/heroine/static/b3.jpg differ diff --git a/heroine/static/c1.jpg b/heroine/static/c1.jpg new file mode 100644 index 0000000..03062fa Binary files /dev/null and b/heroine/static/c1.jpg differ diff --git a/heroine/static/c2.jpg b/heroine/static/c2.jpg new file mode 100644 index 0000000..8f4a03a Binary files /dev/null and b/heroine/static/c2.jpg differ diff --git a/heroine/static/c3.jpg b/heroine/static/c3.jpg new file mode 100644 index 0000000..771cd29 Binary files /dev/null and b/heroine/static/c3.jpg differ diff --git a/heroine/static/cleaners.jpg b/heroine/static/cleaners.jpg new file mode 100644 index 0000000..4c6064e Binary files /dev/null and b/heroine/static/cleaners.jpg differ diff --git a/heroine/static/corona1.jpg b/heroine/static/corona1.jpg new file mode 100644 index 0000000..2465fad Binary files /dev/null and b/heroine/static/corona1.jpg differ diff --git a/heroine/static/create3.png b/heroine/static/create3.png deleted file mode 100644 index 7b16db9..0000000 Binary files a/heroine/static/create3.png and /dev/null differ diff --git a/heroine/static/d1.jpg b/heroine/static/d1.jpg new file mode 100644 index 0000000..8bd1df3 Binary files /dev/null and b/heroine/static/d1.jpg differ diff --git a/heroine/static/d2.jpg b/heroine/static/d2.jpg new file mode 100644 index 0000000..374034e Binary files /dev/null and b/heroine/static/d2.jpg differ diff --git a/heroine/static/d3.jpg b/heroine/static/d3.jpg new file mode 100644 index 0000000..494c7b8 Binary files /dev/null and b/heroine/static/d3.jpg differ diff --git a/heroine/static/doctor.jpg b/heroine/static/doctor.jpg new file mode 100644 index 0000000..e331646 Binary files /dev/null and b/heroine/static/doctor.jpg differ diff --git a/heroine/static/e2.jpg b/heroine/static/e2.jpg new file mode 100644 index 0000000..025a4d2 Binary files /dev/null and b/heroine/static/e2.jpg differ diff --git a/heroine/static/e3.jpg b/heroine/static/e3.jpg new file mode 100644 index 0000000..cd2adce Binary files /dev/null and b/heroine/static/e3.jpg differ diff --git a/heroine/static/e4.jpg b/heroine/static/e4.jpg new file mode 100644 index 0000000..74a4e1f Binary files /dev/null and b/heroine/static/e4.jpg differ diff --git a/heroine/static/f1.jpg b/heroine/static/f1.jpg new file mode 100644 index 0000000..79af48a Binary files /dev/null and b/heroine/static/f1.jpg differ diff --git a/heroine/static/f2.jpg b/heroine/static/f2.jpg new file mode 100644 index 0000000..475df5c Binary files /dev/null and b/heroine/static/f2.jpg differ diff --git a/heroine/static/f3.jpg b/heroine/static/f3.jpg new file mode 100644 index 0000000..2228122 Binary files /dev/null and b/heroine/static/f3.jpg differ diff --git a/heroine/static/fb.jpg b/heroine/static/fb.jpg new file mode 100644 index 0000000..e2e16e9 Binary files /dev/null and b/heroine/static/fb.jpg differ diff --git a/heroine/static/fb2.jpg b/heroine/static/fb2.jpg new file mode 100644 index 0000000..818373e Binary files /dev/null and b/heroine/static/fb2.jpg differ diff --git a/heroine/static/g1.jpg b/heroine/static/g1.jpg new file mode 100644 index 0000000..4aa4069 Binary files /dev/null and b/heroine/static/g1.jpg differ diff --git a/heroine/static/g2.jpg b/heroine/static/g2.jpg new file mode 100644 index 0000000..b3c936a Binary files /dev/null and b/heroine/static/g2.jpg differ diff --git a/heroine/static/g3.jpg b/heroine/static/g3.jpg new file mode 100644 index 0000000..dc262d2 Binary files /dev/null and b/heroine/static/g3.jpg differ diff --git a/heroine/static/h1.jpg b/heroine/static/h1.jpg new file mode 100644 index 0000000..3dc9b05 Binary files /dev/null and b/heroine/static/h1.jpg differ diff --git a/heroine/static/h2.jpg b/heroine/static/h2.jpg new file mode 100644 index 0000000..dc7e794 Binary files /dev/null and b/heroine/static/h2.jpg differ diff --git a/heroine/static/h3.jpg b/heroine/static/h3.jpg new file mode 100644 index 0000000..66ada08 Binary files /dev/null and b/heroine/static/h3.jpg differ diff --git a/heroine/static/help1.jpg b/heroine/static/help1.jpg new file mode 100644 index 0000000..30a3e08 Binary files /dev/null and b/heroine/static/help1.jpg differ diff --git a/heroine/static/i2.jpg b/heroine/static/i2.jpg new file mode 100644 index 0000000..9979a7b Binary files /dev/null and b/heroine/static/i2.jpg differ diff --git a/heroine/static/i3.jpg b/heroine/static/i3.jpg new file mode 100644 index 0000000..447d443 Binary files /dev/null and b/heroine/static/i3.jpg differ diff --git a/heroine/static/i4.jpg b/heroine/static/i4.jpg new file mode 100644 index 0000000..04252db Binary files /dev/null and b/heroine/static/i4.jpg differ diff --git a/heroine/static/i5.jpg b/heroine/static/i5.jpg new file mode 100644 index 0000000..1e0a57a Binary files /dev/null and b/heroine/static/i5.jpg differ diff --git a/heroine/static/i6.jpg b/heroine/static/i6.jpg new file mode 100644 index 0000000..d08c634 Binary files /dev/null and b/heroine/static/i6.jpg differ diff --git a/heroine/static/insta.jpg b/heroine/static/insta.jpg new file mode 100644 index 0000000..6fa6916 Binary files /dev/null and b/heroine/static/insta.jpg differ diff --git a/heroine/static/j1.jpg b/heroine/static/j1.jpg new file mode 100644 index 0000000..6b67896 Binary files /dev/null and b/heroine/static/j1.jpg differ diff --git a/heroine/static/k1.jpg b/heroine/static/k1.jpg new file mode 100644 index 0000000..e09a972 Binary files /dev/null and b/heroine/static/k1.jpg differ diff --git a/heroine/static/k2.jpg b/heroine/static/k2.jpg new file mode 100644 index 0000000..0f84140 Binary files /dev/null and b/heroine/static/k2.jpg differ diff --git a/heroine/static/k3.jpg b/heroine/static/k3.jpg new file mode 100644 index 0000000..1445af7 Binary files /dev/null and b/heroine/static/k3.jpg differ diff --git a/heroine/static/maa.jpg b/heroine/static/maa.jpg new file mode 100644 index 0000000..98b7dad Binary files /dev/null and b/heroine/static/maa.jpg differ diff --git a/heroine/static/ng03.jpg b/heroine/static/ng03.jpg new file mode 100644 index 0000000..8f7df54 Binary files /dev/null and b/heroine/static/ng03.jpg differ diff --git a/heroine/static/ngo.jpg b/heroine/static/ngo.jpg new file mode 100644 index 0000000..b3e583f Binary files /dev/null and b/heroine/static/ngo.jpg differ diff --git a/heroine/static/ngo1.jpg b/heroine/static/ngo1.jpg new file mode 100644 index 0000000..3c8b44d Binary files /dev/null and b/heroine/static/ngo1.jpg differ diff --git a/heroine/static/police.jpg b/heroine/static/police.jpg new file mode 100644 index 0000000..c38d67b Binary files /dev/null and b/heroine/static/police.jpg differ diff --git a/heroine/static/s1.jpg b/heroine/static/s1.jpg new file mode 100644 index 0000000..094b019 Binary files /dev/null and b/heroine/static/s1.jpg differ diff --git a/heroine/static/s2.jpg b/heroine/static/s2.jpg new file mode 100644 index 0000000..097ffd1 Binary files /dev/null and b/heroine/static/s2.jpg differ diff --git a/heroine/static/s3.jpg b/heroine/static/s3.jpg new file mode 100644 index 0000000..9c363be Binary files /dev/null and b/heroine/static/s3.jpg differ diff --git a/heroine/static/setu.jpg b/heroine/static/setu.jpg new file mode 100644 index 0000000..76cd37c Binary files /dev/null and b/heroine/static/setu.jpg differ diff --git a/heroine/static/unity.jpg b/heroine/static/unity.jpg new file mode 100644 index 0000000..88506b5 Binary files /dev/null and b/heroine/static/unity.jpg differ diff --git a/heroine/static/v1.jpeg b/heroine/static/v1.jpeg new file mode 100644 index 0000000..9264651 Binary files /dev/null and b/heroine/static/v1.jpeg differ diff --git a/heroine/static/w1.png b/heroine/static/w1.png new file mode 100644 index 0000000..b4a7f0c Binary files /dev/null and b/heroine/static/w1.png differ diff --git a/heroine/static/x1.jpg b/heroine/static/x1.jpg new file mode 100644 index 0000000..10d3230 Binary files /dev/null and b/heroine/static/x1.jpg differ diff --git a/heroine/static/x2.jpg b/heroine/static/x2.jpg new file mode 100644 index 0000000..d4d2a0a Binary files /dev/null and b/heroine/static/x2.jpg differ diff --git a/heroine/static/x3.jpg b/heroine/static/x3.jpg new file mode 100644 index 0000000..92ddcbd Binary files /dev/null and b/heroine/static/x3.jpg differ diff --git a/heroine/templates/base.html b/heroine/templates/base.html index 62448ab..3a33616 100644 --- a/heroine/templates/base.html +++ b/heroine/templates/base.html @@ -9,8 +9,7 @@ - Rohit's Products Hunt - + Rohit NGO @@ -52,8 +51,8 @@
@@ -90,7 +91,7 @@ diff --git a/heroine/urls.py b/heroine/urls.py index 171b0d6..d5a5fee 100644 --- a/heroine/urls.py +++ b/heroine/urls.py @@ -15,15 +15,15 @@ Including another URLconf """ from django.contrib import admin from django.urls import path,include -from products import views +from hello import views from django.conf import settings from django.conf.urls.static import static + urlpatterns = [ path('admin/', admin.site.urls), - path('',views.home, name='home'), - path('accounts/',include('accounts.urls')), - path('products/',include('products.urls')), - + path('',views.home,name='home'), + path('account/', include('account.urls')), + path('hello/', include('hello.urls')), ]+ static(settings.MEDIA_URL,document_root=settings.MEDIA_ROOT) diff --git a/media/images/Thumbs.db b/media/images/Thumbs.db deleted file mode 100644 index a814f96..0000000 Binary files a/media/images/Thumbs.db and /dev/null differ diff --git a/media/images/army.jpg b/media/images/army.jpg new file mode 100644 index 0000000..3a6e452 Binary files /dev/null and b/media/images/army.jpg differ diff --git a/media/images/b1.jpg b/media/images/b1.jpg new file mode 100644 index 0000000..b55e29b Binary files /dev/null and b/media/images/b1.jpg differ diff --git a/media/images/b1_AieoXKt.jpg b/media/images/b1_AieoXKt.jpg new file mode 100644 index 0000000..b55e29b Binary files /dev/null and b/media/images/b1_AieoXKt.jpg differ diff --git a/media/images/b1_gr1S42S.jpg b/media/images/b1_gr1S42S.jpg new file mode 100644 index 0000000..b55e29b Binary files /dev/null and b/media/images/b1_gr1S42S.jpg differ diff --git a/media/images/b2.jpg b/media/images/b2.jpg new file mode 100644 index 0000000..59924aa Binary files /dev/null and b/media/images/b2.jpg differ diff --git a/media/images/b2_OtqFsUB.jpg b/media/images/b2_OtqFsUB.jpg new file mode 100644 index 0000000..59924aa Binary files /dev/null and b/media/images/b2_OtqFsUB.jpg differ diff --git a/media/images/b2_XTkbU8E.jpg b/media/images/b2_XTkbU8E.jpg new file mode 100644 index 0000000..59924aa Binary files /dev/null and b/media/images/b2_XTkbU8E.jpg differ diff --git a/media/images/b2_YxSh3ye.jpg b/media/images/b2_YxSh3ye.jpg new file mode 100644 index 0000000..59924aa Binary files /dev/null and b/media/images/b2_YxSh3ye.jpg differ diff --git a/media/images/b3.jpg b/media/images/b3.jpg new file mode 100644 index 0000000..6315a87 Binary files /dev/null and b/media/images/b3.jpg differ diff --git a/media/images/banaras_8LBnRQw.jpg b/media/images/banaras_8LBnRQw.jpg deleted file mode 100644 index 7ec49de..0000000 Binary files a/media/images/banaras_8LBnRQw.jpg and /dev/null differ diff --git a/media/images/banaras_8zm3Cag.jpg b/media/images/banaras_8zm3Cag.jpg deleted file mode 100644 index 7ec49de..0000000 Binary files a/media/images/banaras_8zm3Cag.jpg and /dev/null differ diff --git a/media/images/banaras_OkMsMyg.jpg b/media/images/banaras_OkMsMyg.jpg deleted file mode 100644 index 7ec49de..0000000 Binary files a/media/images/banaras_OkMsMyg.jpg and /dev/null differ diff --git a/media/images/banaras_VfE53Mg.jpg b/media/images/banaras_VfE53Mg.jpg deleted file mode 100644 index 7ec49de..0000000 Binary files a/media/images/banaras_VfE53Mg.jpg and /dev/null differ diff --git a/media/images/banaras_ZreUCSB.jpg b/media/images/banaras_ZreUCSB.jpg deleted file mode 100644 index 7ec49de..0000000 Binary files a/media/images/banaras_ZreUCSB.jpg and /dev/null differ diff --git a/media/images/banaras_fHXNEIa.jpg b/media/images/banaras_fHXNEIa.jpg deleted file mode 100644 index 7ec49de..0000000 Binary files a/media/images/banaras_fHXNEIa.jpg and /dev/null differ diff --git a/media/images/banaras_jnmetbX.jpg b/media/images/banaras_jnmetbX.jpg deleted file mode 100644 index 7ec49de..0000000 Binary files a/media/images/banaras_jnmetbX.jpg and /dev/null differ diff --git a/media/images/banaras_qcPk65N.jpg b/media/images/banaras_qcPk65N.jpg deleted file mode 100644 index 7ec49de..0000000 Binary files a/media/images/banaras_qcPk65N.jpg and /dev/null differ diff --git a/media/images/bhau.jpg b/media/images/bhau.jpg new file mode 100644 index 0000000..7cd3264 Binary files /dev/null and b/media/images/bhau.jpg differ diff --git a/media/images/bhau_tjHHdu3.jpg b/media/images/bhau_tjHHdu3.jpg new file mode 100644 index 0000000..7cd3264 Binary files /dev/null and b/media/images/bhau_tjHHdu3.jpg differ diff --git a/media/images/c1.jpg b/media/images/c1.jpg new file mode 100644 index 0000000..03062fa Binary files /dev/null and b/media/images/c1.jpg differ diff --git a/media/images/c2.jpg b/media/images/c2.jpg new file mode 100644 index 0000000..8f4a03a Binary files /dev/null and b/media/images/c2.jpg differ diff --git a/media/images/c3.jpg b/media/images/c3.jpg new file mode 100644 index 0000000..771cd29 Binary files /dev/null and b/media/images/c3.jpg differ diff --git a/media/images/carry.jpg b/media/images/carry.jpg deleted file mode 100644 index da963f1..0000000 Binary files a/media/images/carry.jpg and /dev/null differ diff --git a/media/images/carry_nysnJy5.jpg b/media/images/carry_nysnJy5.jpg deleted file mode 100644 index da963f1..0000000 Binary files a/media/images/carry_nysnJy5.jpg and /dev/null differ diff --git a/media/images/carryminati.jpg b/media/images/carryminati.jpg deleted file mode 100644 index 9f47e8b..0000000 Binary files a/media/images/carryminati.jpg and /dev/null differ diff --git a/media/images/cleaners.jpg b/media/images/cleaners.jpg new file mode 100644 index 0000000..4c6064e Binary files /dev/null and b/media/images/cleaners.jpg differ diff --git a/media/images/corona.jpg b/media/images/corona.jpg deleted file mode 100644 index df49295..0000000 Binary files a/media/images/corona.jpg and /dev/null differ diff --git a/media/images/coronaicon.jpg b/media/images/coronaicon.jpg deleted file mode 100644 index a572e65..0000000 Binary files a/media/images/coronaicon.jpg and /dev/null differ diff --git a/media/images/create1.jpg b/media/images/create1.jpg deleted file mode 100644 index cbd779c..0000000 Binary files a/media/images/create1.jpg and /dev/null differ diff --git a/media/images/create1_pUkv3CJ.jpg b/media/images/create1_pUkv3CJ.jpg deleted file mode 100644 index cbd779c..0000000 Binary files a/media/images/create1_pUkv3CJ.jpg and /dev/null differ diff --git a/media/images/create2.png b/media/images/create2.png deleted file mode 100644 index c5cefe1..0000000 Binary files a/media/images/create2.png and /dev/null differ diff --git a/media/images/create2_5O4hyC5.png b/media/images/create2_5O4hyC5.png deleted file mode 100644 index c5cefe1..0000000 Binary files a/media/images/create2_5O4hyC5.png and /dev/null differ diff --git a/media/images/create2_9hgiphd.png b/media/images/create2_9hgiphd.png deleted file mode 100644 index c5cefe1..0000000 Binary files a/media/images/create2_9hgiphd.png and /dev/null differ diff --git a/media/images/create2_Bbsy5my.png b/media/images/create2_Bbsy5my.png deleted file mode 100644 index c5cefe1..0000000 Binary files a/media/images/create2_Bbsy5my.png and /dev/null differ diff --git a/media/images/create2_UM7C3Se.png b/media/images/create2_UM7C3Se.png deleted file mode 100644 index c5cefe1..0000000 Binary files a/media/images/create2_UM7C3Se.png and /dev/null differ diff --git a/media/images/create2_bT64gLA.png b/media/images/create2_bT64gLA.png deleted file mode 100644 index c5cefe1..0000000 Binary files a/media/images/create2_bT64gLA.png and /dev/null differ diff --git a/media/images/create2_oQhTCyR.png b/media/images/create2_oQhTCyR.png deleted file mode 100644 index c5cefe1..0000000 Binary files a/media/images/create2_oQhTCyR.png and /dev/null differ diff --git a/media/images/create2_r1DaO5D.png b/media/images/create2_r1DaO5D.png deleted file mode 100644 index c5cefe1..0000000 Binary files a/media/images/create2_r1DaO5D.png and /dev/null differ diff --git a/media/images/create3.png b/media/images/create3.png deleted file mode 100644 index 7b16db9..0000000 Binary files a/media/images/create3.png and /dev/null differ diff --git a/media/images/create3_3tx6tXQ.png b/media/images/create3_3tx6tXQ.png deleted file mode 100644 index 7b16db9..0000000 Binary files a/media/images/create3_3tx6tXQ.png and /dev/null differ diff --git a/media/images/d1.jpg b/media/images/d1.jpg new file mode 100644 index 0000000..8bd1df3 Binary files /dev/null and b/media/images/d1.jpg differ diff --git a/media/images/django.png b/media/images/django.png deleted file mode 100644 index 642aee8..0000000 Binary files a/media/images/django.png and /dev/null differ diff --git a/media/images/logo1.jpg b/media/images/logo1.jpg deleted file mode 100644 index 5e0bc18..0000000 Binary files a/media/images/logo1.jpg and /dev/null differ diff --git a/media/images/mumbai.jpg b/media/images/mumbai.jpg deleted file mode 100644 index 2a45d1f..0000000 Binary files a/media/images/mumbai.jpg and /dev/null differ diff --git a/media/images/music1.jpg b/media/images/music1.jpg deleted file mode 100644 index 3c2af44..0000000 Binary files a/media/images/music1.jpg and /dev/null differ diff --git a/media/images/music1_FTVE53r.jpg b/media/images/music1_FTVE53r.jpg deleted file mode 100644 index 3c2af44..0000000 Binary files a/media/images/music1_FTVE53r.jpg and /dev/null differ diff --git a/media/images/music1_QmsrQlV.jpg b/media/images/music1_QmsrQlV.jpg deleted file mode 100644 index 3c2af44..0000000 Binary files a/media/images/music1_QmsrQlV.jpg and /dev/null differ diff --git a/media/images/new4.jpg b/media/images/new4.jpg deleted file mode 100644 index 2eb6f47..0000000 Binary files a/media/images/new4.jpg and /dev/null differ diff --git a/media/images/new4_xP0QTTo.jpg b/media/images/new4_xP0QTTo.jpg deleted file mode 100644 index 2eb6f47..0000000 Binary files a/media/images/new4_xP0QTTo.jpg and /dev/null differ diff --git a/media/images/rohit.jpg b/media/images/rohit.jpg deleted file mode 100644 index e3ed749..0000000 Binary files a/media/images/rohit.jpg and /dev/null differ diff --git a/media/images/rohit_yYWLObF.jpg b/media/images/rohit_yYWLObF.jpg deleted file mode 100644 index e3ed749..0000000 Binary files a/media/images/rohit_yYWLObF.jpg and /dev/null differ diff --git a/media/images/rohiticon.jpg b/media/images/rohiticon.jpg deleted file mode 100644 index 42a74d8..0000000 Binary files a/media/images/rohiticon.jpg and /dev/null differ diff --git a/media/images/youtubelogo.jpg b/media/images/youtubelogo.jpg deleted file mode 100644 index 15976c1..0000000 Binary files a/media/images/youtubelogo.jpg and /dev/null differ diff --git a/media/images/youtubelogo_EPVggvE.jpg b/media/images/youtubelogo_EPVggvE.jpg deleted file mode 100644 index 15976c1..0000000 Binary files a/media/images/youtubelogo_EPVggvE.jpg and /dev/null differ diff --git a/products/__pycache__/__init__.cpython-37.pyc b/products/__pycache__/__init__.cpython-37.pyc deleted file mode 100644 index b260868..0000000 Binary files a/products/__pycache__/__init__.cpython-37.pyc and /dev/null differ diff --git a/products/__pycache__/admin.cpython-37.pyc b/products/__pycache__/admin.cpython-37.pyc deleted file mode 100644 index 6f25a65..0000000 Binary files a/products/__pycache__/admin.cpython-37.pyc and /dev/null differ diff --git a/products/__pycache__/apps.cpython-37.pyc b/products/__pycache__/apps.cpython-37.pyc deleted file mode 100644 index c5f6bb5..0000000 Binary files a/products/__pycache__/apps.cpython-37.pyc and /dev/null differ diff --git a/products/__pycache__/models.cpython-37.pyc b/products/__pycache__/models.cpython-37.pyc deleted file mode 100644 index 921c878..0000000 Binary files a/products/__pycache__/models.cpython-37.pyc and /dev/null differ diff --git a/products/__pycache__/urls.cpython-37.pyc b/products/__pycache__/urls.cpython-37.pyc deleted file mode 100644 index 59f914e..0000000 Binary files a/products/__pycache__/urls.cpython-37.pyc and /dev/null differ diff --git a/products/__pycache__/views.cpython-37.pyc b/products/__pycache__/views.cpython-37.pyc deleted file mode 100644 index 55a9071..0000000 Binary files a/products/__pycache__/views.cpython-37.pyc and /dev/null differ diff --git a/products/apps.py b/products/apps.py deleted file mode 100644 index 864c43e..0000000 --- a/products/apps.py +++ /dev/null @@ -1,5 +0,0 @@ -from django.apps import AppConfig - - -class ProductsConfig(AppConfig): - name = 'products' diff --git a/products/migrations/0002_auto_20200519_2214.py b/products/migrations/0002_auto_20200519_2214.py deleted file mode 100644 index 725440b..0000000 --- a/products/migrations/0002_auto_20200519_2214.py +++ /dev/null @@ -1,28 +0,0 @@ -# Generated by Django 2.2 on 2020-05-19 16:44 - -from django.db import migrations, models - - -class Migration(migrations.Migration): - - dependencies = [ - ('products', '0001_initial'), - ] - - operations = [ - migrations.AlterField( - model_name='product', - name='icon', - field=models.ImageField(upload_to='images/'), - ), - migrations.AlterField( - model_name='product', - name='image', - field=models.ImageField(upload_to='images/'), - ), - migrations.AlterField( - model_name='product', - name='votes_total', - field=models.IntegerField(default=1), - ), - ] diff --git a/products/migrations/0003_product_body.py b/products/migrations/0003_product_body.py deleted file mode 100644 index a2335f7..0000000 --- a/products/migrations/0003_product_body.py +++ /dev/null @@ -1,18 +0,0 @@ -# Generated by Django 2.2 on 2020-05-20 03:30 - -from django.db import migrations, models - - -class Migration(migrations.Migration): - - dependencies = [ - ('products', '0002_auto_20200519_2214'), - ] - - operations = [ - migrations.AddField( - model_name='product', - name='body', - field=models.TextField(default=''), - ), - ] diff --git a/products/migrations/0004_auto_20200520_0916.py b/products/migrations/0004_auto_20200520_0916.py deleted file mode 100644 index 56113b0..0000000 --- a/products/migrations/0004_auto_20200520_0916.py +++ /dev/null @@ -1,18 +0,0 @@ -# Generated by Django 2.2 on 2020-05-20 03:46 - -from django.db import migrations, models - - -class Migration(migrations.Migration): - - dependencies = [ - ('products', '0003_product_body'), - ] - - operations = [ - migrations.AlterField( - model_name='product', - name='body', - field=models.TextField(max_length=300), - ), - ] diff --git a/products/migrations/__pycache__/0001_initial.cpython-37.pyc b/products/migrations/__pycache__/0001_initial.cpython-37.pyc deleted file mode 100644 index 0751603..0000000 Binary files a/products/migrations/__pycache__/0001_initial.cpython-37.pyc and /dev/null differ diff --git a/products/migrations/__pycache__/0002_auto_20200519_2214.cpython-37.pyc b/products/migrations/__pycache__/0002_auto_20200519_2214.cpython-37.pyc deleted file mode 100644 index 80b1528..0000000 Binary files a/products/migrations/__pycache__/0002_auto_20200519_2214.cpython-37.pyc and /dev/null differ diff --git a/products/migrations/__pycache__/0003_product_body.cpython-37.pyc b/products/migrations/__pycache__/0003_product_body.cpython-37.pyc deleted file mode 100644 index 1b35be2..0000000 Binary files a/products/migrations/__pycache__/0003_product_body.cpython-37.pyc and /dev/null differ diff --git a/products/migrations/__pycache__/0004_auto_20200520_0916.cpython-37.pyc b/products/migrations/__pycache__/0004_auto_20200520_0916.cpython-37.pyc deleted file mode 100644 index 92444ae..0000000 Binary files a/products/migrations/__pycache__/0004_auto_20200520_0916.cpython-37.pyc and /dev/null differ diff --git a/products/migrations/__pycache__/__init__.cpython-37.pyc b/products/migrations/__pycache__/__init__.cpython-37.pyc deleted file mode 100644 index 8ba7b41..0000000 Binary files a/products/migrations/__pycache__/__init__.cpython-37.pyc and /dev/null differ diff --git a/products/models.py b/products/models.py deleted file mode 100644 index cfaeff5..0000000 --- a/products/models.py +++ /dev/null @@ -1,25 +0,0 @@ -from django.db import models -from django.contrib.auth.models import User - -# Create your models here. -class Product(models.Model): - title= models.CharField(max_length=255) - pub_date=models.DateTimeField() - body=models.TextField(max_length=300) - url=models.TextField() - image=models.ImageField(upload_to='images/') - icon=models.ImageField(upload_to='images/') - votes_total=models.IntegerField(default=1) - hunter=models.ForeignKey(User,on_delete=models.CASCADE) - - def _str_(self): - return self.title - - def summary(self): - return self.body[:100] - - def pub_date_pretty(self): - return self.pub_date.strftime('%b %e %Y') - - - diff --git a/products/templates/home.html b/products/templates/home.html deleted file mode 100644 index 68e8506..0000000 --- a/products/templates/home.html +++ /dev/null @@ -1,32 +0,0 @@ -{% extends 'base.html'%} - -{% block content %} - - -{% for product in products.all %} - - - -
-
- -
-
-

{{product.title}}

-

{{product.summary}}

-
- -
- - -
- {% csrf_token %} - -
- -{% endfor %} - - -{% endblock %} diff --git a/products/views.py b/products/views.py deleted file mode 100644 index 3bb8bb8..0000000 --- a/products/views.py +++ /dev/null @@ -1,44 +0,0 @@ - - -from django.shortcuts import render, redirect,get_object_or_404 -from django.contrib.auth.decorators import login_required -from .models import Product -from django.utils import timezone - -def home(request): - products = Product.objects - return render(request, 'home.html',{'products':products}) - -@login_required(login_url="/accounts/signup") -def create(request): - if request.method == 'POST': - if request.POST['title'] and request.POST['body'] and request.POST['url'] and request.FILES['icon'] and request.FILES['image']: - product = Product() - product.title = request.POST['title'] - product.body = request.POST['body'] - if request.POST['url'].startswith('http://') or request.POST['url'].startswith('https://'): - product.url = request.POST['url'] - else: - product.url = 'http://' + request.POST['url'] - product.icon = request.FILES['icon'] - product.image = request.FILES['image'] - product.pub_date = timezone.datetime.now() - product.hunter = request.user - product.save() - return redirect('/products/'+str(product.id)) - else: - return render(request, 'create.html',{'error':'All fields are required.'}) - else: - return render(request, 'create.html') - -def detail(request,product_id): - product= get_object_or_404(Product,pk=product_id) - return render(request, 'detail.html',{'product':product}) - -@login_required(login_url="/accounts/signup") -def upvote(request,product_id): - if request.method=='POST': - product= get_object_or_404(Product,pk=product_id) - product.votes_total+=1 - product.save() - return redirect('/products/'+str(product.id)) diff --git a/requirements.txt b/requirements.txt index 5a9e02f..1d9ec98 100644 --- a/requirements.txt +++ b/requirements.txt @@ -12,4 +12,4 @@ six==1.14.0 sqlparse==0.3.1 toml==0.10.0 typed-ast==1.4.1 -wrapt==1.12.1 +wrapt==1.12.1 \ No newline at end of file diff --git a/static/Thumbs.db b/static/Thumbs.db index d372c1b..dfa2fe5 100644 Binary files a/static/Thumbs.db and b/static/Thumbs.db differ diff --git a/static/army.jpg b/static/army.jpg new file mode 100644 index 0000000..3a6e452 Binary files /dev/null and b/static/army.jpg differ diff --git a/static/b1.jpg b/static/b1.jpg new file mode 100644 index 0000000..b55e29b Binary files /dev/null and b/static/b1.jpg differ diff --git a/static/b2.jpg b/static/b2.jpg new file mode 100644 index 0000000..59924aa Binary files /dev/null and b/static/b2.jpg differ diff --git a/static/b3.jpg b/static/b3.jpg new file mode 100644 index 0000000..6315a87 Binary files /dev/null and b/static/b3.jpg differ diff --git a/static/c1.jpg b/static/c1.jpg new file mode 100644 index 0000000..03062fa Binary files /dev/null and b/static/c1.jpg differ diff --git a/static/c2.jpg b/static/c2.jpg new file mode 100644 index 0000000..8f4a03a Binary files /dev/null and b/static/c2.jpg differ diff --git a/static/c3.jpg b/static/c3.jpg new file mode 100644 index 0000000..771cd29 Binary files /dev/null and b/static/c3.jpg differ diff --git a/static/cleaners.jpg b/static/cleaners.jpg new file mode 100644 index 0000000..4c6064e Binary files /dev/null and b/static/cleaners.jpg differ diff --git a/static/corona1.jpg b/static/corona1.jpg new file mode 100644 index 0000000..2465fad Binary files /dev/null and b/static/corona1.jpg differ diff --git a/static/create3.png b/static/create3.png deleted file mode 100644 index 7b16db9..0000000 Binary files a/static/create3.png and /dev/null differ diff --git a/static/d1.jpg b/static/d1.jpg new file mode 100644 index 0000000..8bd1df3 Binary files /dev/null and b/static/d1.jpg differ diff --git a/static/d2.jpg b/static/d2.jpg new file mode 100644 index 0000000..374034e Binary files /dev/null and b/static/d2.jpg differ diff --git a/static/d3.jpg b/static/d3.jpg new file mode 100644 index 0000000..494c7b8 Binary files /dev/null and b/static/d3.jpg differ diff --git a/static/doctor.jpg b/static/doctor.jpg new file mode 100644 index 0000000..e331646 Binary files /dev/null and b/static/doctor.jpg differ diff --git a/static/e2.jpg b/static/e2.jpg new file mode 100644 index 0000000..025a4d2 Binary files /dev/null and b/static/e2.jpg differ diff --git a/static/e3.jpg b/static/e3.jpg new file mode 100644 index 0000000..cd2adce Binary files /dev/null and b/static/e3.jpg differ diff --git a/static/e4.jpg b/static/e4.jpg new file mode 100644 index 0000000..74a4e1f Binary files /dev/null and b/static/e4.jpg differ diff --git a/static/f1.jpg b/static/f1.jpg new file mode 100644 index 0000000..79af48a Binary files /dev/null and b/static/f1.jpg differ diff --git a/static/f2.jpg b/static/f2.jpg new file mode 100644 index 0000000..475df5c Binary files /dev/null and b/static/f2.jpg differ diff --git a/static/f3.jpg b/static/f3.jpg new file mode 100644 index 0000000..2228122 Binary files /dev/null and b/static/f3.jpg differ diff --git a/static/fb.jpg b/static/fb.jpg new file mode 100644 index 0000000..e2e16e9 Binary files /dev/null and b/static/fb.jpg differ diff --git a/static/fb2.jpg b/static/fb2.jpg new file mode 100644 index 0000000..818373e Binary files /dev/null and b/static/fb2.jpg differ diff --git a/static/g1.jpg b/static/g1.jpg new file mode 100644 index 0000000..4aa4069 Binary files /dev/null and b/static/g1.jpg differ diff --git a/static/g2.jpg b/static/g2.jpg new file mode 100644 index 0000000..b3c936a Binary files /dev/null and b/static/g2.jpg differ diff --git a/static/g3.jpg b/static/g3.jpg new file mode 100644 index 0000000..dc262d2 Binary files /dev/null and b/static/g3.jpg differ diff --git a/static/h1.jpg b/static/h1.jpg new file mode 100644 index 0000000..3dc9b05 Binary files /dev/null and b/static/h1.jpg differ diff --git a/static/h2.jpg b/static/h2.jpg new file mode 100644 index 0000000..dc7e794 Binary files /dev/null and b/static/h2.jpg differ diff --git a/static/h3.jpg b/static/h3.jpg new file mode 100644 index 0000000..66ada08 Binary files /dev/null and b/static/h3.jpg differ diff --git a/static/help1.jpg b/static/help1.jpg new file mode 100644 index 0000000..30a3e08 Binary files /dev/null and b/static/help1.jpg differ diff --git a/static/i2.jpg b/static/i2.jpg new file mode 100644 index 0000000..9979a7b Binary files /dev/null and b/static/i2.jpg differ diff --git a/static/i3.jpg b/static/i3.jpg new file mode 100644 index 0000000..447d443 Binary files /dev/null and b/static/i3.jpg differ diff --git a/static/i4.jpg b/static/i4.jpg new file mode 100644 index 0000000..04252db Binary files /dev/null and b/static/i4.jpg differ diff --git a/static/i5.jpg b/static/i5.jpg new file mode 100644 index 0000000..1e0a57a Binary files /dev/null and b/static/i5.jpg differ diff --git a/static/i6.jpg b/static/i6.jpg new file mode 100644 index 0000000..d08c634 Binary files /dev/null and b/static/i6.jpg differ diff --git a/static/insta.jpg b/static/insta.jpg new file mode 100644 index 0000000..6fa6916 Binary files /dev/null and b/static/insta.jpg differ diff --git a/static/j1.jpg b/static/j1.jpg new file mode 100644 index 0000000..6b67896 Binary files /dev/null and b/static/j1.jpg differ diff --git a/static/k1.jpg b/static/k1.jpg new file mode 100644 index 0000000..e09a972 Binary files /dev/null and b/static/k1.jpg differ diff --git a/static/k2.jpg b/static/k2.jpg new file mode 100644 index 0000000..0f84140 Binary files /dev/null and b/static/k2.jpg differ diff --git a/static/k3.jpg b/static/k3.jpg new file mode 100644 index 0000000..1445af7 Binary files /dev/null and b/static/k3.jpg differ diff --git a/static/maa.jpg b/static/maa.jpg new file mode 100644 index 0000000..98b7dad Binary files /dev/null and b/static/maa.jpg differ diff --git a/static/ng03.jpg b/static/ng03.jpg new file mode 100644 index 0000000..8f7df54 Binary files /dev/null and b/static/ng03.jpg differ diff --git a/static/ngo.jpg b/static/ngo.jpg new file mode 100644 index 0000000..b3e583f Binary files /dev/null and b/static/ngo.jpg differ diff --git a/static/ngo1.jpg b/static/ngo1.jpg new file mode 100644 index 0000000..3c8b44d Binary files /dev/null and b/static/ngo1.jpg differ diff --git a/static/police.jpg b/static/police.jpg new file mode 100644 index 0000000..c38d67b Binary files /dev/null and b/static/police.jpg differ diff --git a/static/s1.jpg b/static/s1.jpg new file mode 100644 index 0000000..094b019 Binary files /dev/null and b/static/s1.jpg differ diff --git a/static/s2.jpg b/static/s2.jpg new file mode 100644 index 0000000..097ffd1 Binary files /dev/null and b/static/s2.jpg differ diff --git a/static/s3.jpg b/static/s3.jpg new file mode 100644 index 0000000..9c363be Binary files /dev/null and b/static/s3.jpg differ diff --git a/static/setu.jpg b/static/setu.jpg new file mode 100644 index 0000000..76cd37c Binary files /dev/null and b/static/setu.jpg differ diff --git a/static/unity.jpg b/static/unity.jpg new file mode 100644 index 0000000..88506b5 Binary files /dev/null and b/static/unity.jpg differ diff --git a/static/v1.jpeg b/static/v1.jpeg new file mode 100644 index 0000000..9264651 Binary files /dev/null and b/static/v1.jpeg differ diff --git a/static/w1.png b/static/w1.png new file mode 100644 index 0000000..b4a7f0c Binary files /dev/null and b/static/w1.png differ diff --git a/static/x1.jpg b/static/x1.jpg new file mode 100644 index 0000000..10d3230 Binary files /dev/null and b/static/x1.jpg differ diff --git a/static/x2.jpg b/static/x2.jpg new file mode 100644 index 0000000..d4d2a0a Binary files /dev/null and b/static/x2.jpg differ diff --git a/static/x3.jpg b/static/x3.jpg new file mode 100644 index 0000000..92ddcbd Binary files /dev/null and b/static/x3.jpg differ