Re: Finding Help in getting started in Django

2023-05-30 Thread psyMaster Code
Congratulations, You did one of the greatest choice In the beginning, the documentation of django is awsome and also infinity, You can go through the 7 first steps of doc, then get start the django rest framework on https://www.django-rest-framework.org/ After that you can find out more and more

Re: Finding Help in getting started in Django

2023-05-30 Thread Bhuvnesh Sharma
Hi Veronica, You can start from the official documentation. Django has one of the best documentations in the world , just in case you are lost, here's a link from where you can create your first application : https://docs.djangoproject.com/en/4.2/intro/tutorial01/ Regards, Bhuvnesh On Tue, May

Re: Finding Help in getting started in Django

2023-05-30 Thread Muhammad Juwaini Abdul Rahman
Getting started by doing. Django official site have their own tutorial that you can follow line by line. On Tue, 30 May 2023 at 22:55, Veronica Ndemo wrote: > Hi guys I need help.I am just getting started in using Django and I would > love to get guidance on how to go about the Django framework

Finding Help in getting started in Django

2023-05-30 Thread Veronica Ndemo
Hi guys I need help.I am just getting started in using Django and I would love to get guidance on how to go about the Django framework -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from

Re: UPLOAD STATIC FILES

2023-05-30 Thread Colin Ado
1. Create a folder called static, and inside the static folder create another folder 2. Go to settings.py AND add this: STATIC_URL = 'static/' STATICFILES_DIRS = [ BASE_DIR / 'static' ] 3. Go to your .html file and like the .css file using: On Mon, 29 May 2023 at 18:31, Obiorah Callistus wr

Re: UPLOAD STATIC FILES

2023-05-30 Thread DieHardMan 300
settings.py - add following line if not exist -- STATIC_URL = 'static/' in your static folder ---> project_name/app_name/static/app_name/ * I recommen

Re: UPLOAD STATIC FILES

2023-05-30 Thread DieHardMan 300
settings.py - add following line if not exist -- STATIC_URL = 'static/' in your static folder ---> project_name/app_name/static/app_name/ * I recommen