Code Monkey home page Code Monkey logo

Comments (15)

khannakshat7 avatar khannakshat7 commented on August 27, 2024

Ok, @tanishq-arya You can make a contact form but you should match it with the theme of the project. I am assigning the issue. You can start contributing to it.

from elektra.

tanishq-arya avatar tanishq-arya commented on August 27, 2024

Thankyou for assigning me the issue. I'm having trouble viewing the website on my machine, can you help me with that. I can only see the static website. I have to run main.py right ? I installed django but I'm unable to install mysqlclient and main.py won't run without it.

from elektra.

khannakshat7 avatar khannakshat7 commented on August 27, 2024

Just run the command pip install mysqlclient
Then run the manage.py file using command python manage.py runserver

No need to run main.py file

from elektra.

tanishq-arya avatar tanishq-arya commented on August 27, 2024

okay

from elektra.

tanishq-arya avatar tanishq-arya commented on August 27, 2024

Getting the following errors
PS D:\Elektra> python manage.py runserver
Watching for file changes with StatReloader
Performing system checks...

System check identified no issues (0 silenced).
Exception in thread django-main-thread:
Traceback (most recent call last):
File "C:\Users\Tanishq\AppData\Local\Programs\Python\Python38-32\lib\site-packages\django\db\backends\base\base.py", line 219, in ensure_connection
self.connect()
File "C:\Users\Tanishq\AppData\Local\Programs\Python\Python38-32\lib\site-packages\django\utils\asyncio.py", line 26, in inner
return func(*args, **kwargs)
File "C:\Users\Tanishq\AppData\Local\Programs\Python\Python38-32\lib\site-packages\django\db\backends\base\base.py", line 200, in connect
self.connection = self.get_new_connection(conn_params)
File "C:\Users\Tanishq\AppData\Local\Programs\Python\Python38-32\lib\site-packages\django\utils\asyncio.py", line 26, in inner
return func(*args, **kwargs)
File "C:\Users\Tanishq\AppData\Local\Programs\Python\Python38-32\lib\site-packages\django\db\backends\mysql\base.py", line 234, in get_new_connection
return Database.connect(**conn_params)
File "C:\Users\Tanishq\AppData\Local\Programs\Python\Python38-32\lib\site-packages\MySQLdb_init_.py", line 84, in Connect
return Connection(*args, **kwargs)
File "C:\Users\Tanishq\AppData\Local\Programs\Python\Python38-32\lib\site-packages\MySQLdb\connections.py", line 179, in init
super(Connection, self).init(*args, **kwargs2)
MySQLdb._exceptions.OperationalError: (1045, "Access denied for user 'ODBC'@'localhost' (using password: NO)")

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
File "C:\Users\Tanishq\AppData\Local\Programs\Python\Python38-32\lib\threading.py", line 932, in _bootstrap_inner
self.run()
File "C:\Users\Tanishq\AppData\Local\Programs\Python\Python38-32\lib\threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "C:\Users\Tanishq\AppData\Local\Programs\Python\Python38-32\lib\site-packages\django\utils\autoreload.py", line 53, in wrapper
fn(*args, **kwargs)
File "C:\Users\Tanishq\AppData\Local\Programs\Python\Python38-32\lib\site-packages\django\core\management\commands\runserver.py", line 121, in inner_run
self.check_migrations()
File "C:\Users\Tanishq\AppData\Local\Programs\Python\Python38-32\lib\site-packages\django\core\management\base.py", line 459, in check_migrations
executor = MigrationExecutor(connections[DEFAULT_DB_ALIAS])
File "C:\Users\Tanishq\AppData\Local\Programs\Python\Python38-32\lib\site-packages\django\db\migrations\executor.py", line 18, in init
self.loader = MigrationLoader(self.connection)
File "C:\Users\Tanishq\AppData\Local\Programs\Python\Python38-32\lib\site-packages\django\db\migrations\loader.py", line 53, in init
self.build_graph()
File "C:\Users\Tanishq\AppData\Local\Programs\Python\Python38-32\lib\site-packages\django\db\migrations\loader.py", line 216, in build_graph
self.applied_migrations = recorder.applied_migrations()
File "C:\Users\Tanishq\AppData\Local\Programs\Python\Python38-32\lib\site-packages\django\db\migrations\recorder.py", line 77, in applied_migrations
if self.has_table():
File "C:\Users\Tanishq\AppData\Local\Programs\Python\Python38-32\lib\site-packages\django\db\migrations\recorder.py", line 55, in has_table
with self.connection.cursor() as cursor:
File "C:\Users\Tanishq\AppData\Local\Programs\Python\Python38-32\lib\site-packages\django\utils\asyncio.py", line 26, in inner
return func(*args, **kwargs)
File "C:\Users\Tanishq\AppData\Local\Programs\Python\Python38-32\lib\site-packages\django\db\backends\base\base.py", line 259, in cursor
return self._cursor()
File "C:\Users\Tanishq\AppData\Local\Programs\Python\Python38-32\lib\site-packages\django\db\backends\base\base.py", line 235, in cursor
self.ensure_connection()
File "C:\Users\Tanishq\AppData\Local\Programs\Python\Python38-32\lib\site-packages\django\utils\asyncio.py", line 26, in inner
return func(*args, **kwargs)
File "C:\Users\Tanishq\AppData\Local\Programs\Python\Python38-32\lib\site-packages\django\db\backends\base\base.py", line 219, in ensure_connection
self.connect()
File "C:\Users\Tanishq\AppData\Local\Programs\Python\Python38-32\lib\site-packages\django\db\utils.py", line 90, in exit
raise dj_exc_value.with_traceback(traceback) from exc_value
File "C:\Users\Tanishq\AppData\Local\Programs\Python\Python38-32\lib\site-packages\django\db\backends\base\base.py", line 219, in ensure_connection
self.connect()
File "C:\Users\Tanishq\AppData\Local\Programs\Python\Python38-32\lib\site-packages\django\utils\asyncio.py", line 26, in inner
return func(*args, **kwargs)
File "C:\Users\Tanishq\AppData\Local\Programs\Python\Python38-32\lib\site-packages\django\db\backends\base\base.py", line 200, in connect
self.connection = self.get_new_connection(conn_params)
File "C:\Users\Tanishq\AppData\Local\Programs\Python\Python38-32\lib\site-packages\django\utils\asyncio.py", line 26, in inner
return func(*args, **kwargs)
File "C:\Users\Tanishq\AppData\Local\Programs\Python\Python38-32\lib\site-packages\django\db\backends\mysql\base.py", line 234, in get_new_connection
return Database.connect(**conn_params)
File "C:\Users\Tanishq\AppData\Local\Programs\Python\Python38-32\lib\site-packages\MySQLdb_init
.py", line 84, in Connect
return Connection(*args, **kwargs)
File "C:\Users\Tanishq\AppData\Local\Programs\Python\Python38-32\lib\site-packages\MySQLdb\connections.py", line 179, in init
super(Connection, self).init(*args, **kwargs2)
django.db.utils.OperationalError: (1045, "Access denied for user 'ODBC'@'localhost' (using password: NO)")

from elektra.

khannakshat7 avatar khannakshat7 commented on August 27, 2024

from elektra.

tanishq-arya avatar tanishq-arya commented on August 27, 2024

I have made some changes to the contact and footer. Now I'll be working on the responsiveness of the form. I am attaching an update screenshot.
Screenshot (941)

Below is an design idea I was thinking when we hover over the submit button.
Screenshot (940)

from elektra.

khannakshat7 avatar khannakshat7 commented on August 27, 2024

Great work @tanishq-arya!! Go ahead and work on responsive form

from elektra.

tanishq-arya avatar tanishq-arya commented on August 27, 2024

I need a clarification. I have to stage commits only to the style.css and html.css right ? The changes to settings.py were to my machine only.

from elektra.

khannakshat7 avatar khannakshat7 commented on August 27, 2024

from elektra.

tanishq-arya avatar tanishq-arya commented on August 27, 2024

This is my first ever issue so could you guide me about how I should proceed for the pull request ?

from elektra.

khannakshat7 avatar khannakshat7 commented on August 27, 2024

from elektra.

tanishq-arya avatar tanishq-arya commented on August 27, 2024

Okay got it.

from elektra.

tanishq-arya avatar tanishq-arya commented on August 27, 2024

Also could you please add the label GSSOC'21 to the issue.

from elektra.

tanishq-arya avatar tanishq-arya commented on August 27, 2024

#17 I have solved this issue

from elektra.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.