Re: Tutorial for a Django web store

2023-04-14 Thread Sebastian Jung
Get django oscar sandbox and most things are allready implemented Michael Starr schrieb am Mi., 12. Apr. 2023, 08:02: > Does anyone know of a good tutorial (preferably with github files) that > teaches you how to make a web store in Django? It seems like a basic > literacy skill f

Re: Tutorial for a Django web store

2023-04-14 Thread Adewunmi Oladele
Can you please share Denis ivanov YouTube channel link ? On Thu, Apr 13, 2023, 6:58 PM Bradie Poa wrote: > There's no full toturial that does that. The only man who tried is Denis > ivanov on his YouTube channel but still he did backend alone and frontend > alone. > > Try him out. Maybe you may

Re: Tutorial for a Django web store

2023-04-13 Thread Bradie Poa
There's no full toturial that does that. The only man who tried is Denis ivanov on his YouTube channel but still he did backend alone and frontend alone. Try him out. Maybe you may earn something  On Thu, Apr 13, 2023, 16:47 Alexandre Felgueiras < alexandre.r.felguei...@gmail.com> wrote: >

Re: Tutorial for a Django web store

2023-04-13 Thread Alexandre Felgueiras
Helo Michael, I've been studying this e-book and I think it's amazing. There is another books from the same author for more advanced users. check on: https://www.amazon.com.br/Django-Beginners-Build-Websites-Python/dp/1735467200 Best regards -- You received this message because you are

Tutorial for a Django web store

2023-04-12 Thread Michael Starr
Does anyone know of a good tutorial (preferably with github files) that teaches you how to make a web store in Django? It seems like a basic literacy skill for Django programming. Let me know. Thanks. Michael -- You received this message because you are subscribed to the Google Groups

Re: Stuck with Django Tutorial Part 4

2023-03-15 Thread Chetan Ganji
It seems to me like you are not entering the url name In place of 'polls:vote' try to enter the name of the url given to that url For Your Reference https://docs.djangoproject.com/en/4.1/ref/templates/builtins/#url I hope it helps you! Regards, Chetan Ganji +91-900-483-4183 ganji.che...@gmail.com

Re: Stuck with Django Tutorial Part 4

2023-03-14 Thread Nithin Kumar
Here. urls.py from django.urls import path from . import views app_name = 'polls' urlpatterns = [ path('', views.IndexView.as_view(), name='index'), path('/', views.DetailView.as_view(), name='detail'), path('/results/', views.ResultsView.as_view(), name='results'),

Re: Stuck with Django Tutorial Part 4

2023-03-14 Thread Prosper Lekia
This should be your views for vote. from django.http import HttpResponse, HttpResponseRedirect from django.shortcuts import get_object_or_404, render from django.urls import reverse from .models import Choice, Question # ... def vote(request, question_id): question =

Re: Stuck with Django Tutorial Part 4

2023-03-14 Thread Brian Carey
I think you need to check your urls.py. ⁣Get BlueMail for Android ​ On Mar 14, 2023, 1:33 PM, at 1:33 PM, Nithin Kumar wrote: >question.id or question_id both gave the same result. >These are the views. > >from django.shortcuts import get_object_or_404, render >from django.http import

Re: Stuck with Django Tutorial Part 4

2023-03-14 Thread Sandip Bhattacharya
Can you share your urls.py? > On Mar 14, 2023, at 1:33 AM, Nithin Kumar wrote: > > Hi, > > Stuck with this problem > > https://docs.djangoproject.com/en/4.1/intro/tutorial04/ > > NoReverseMatch at /polls/2/Reverse for 'vote' with arguments '(2,)' not > found. 1 pattern(s) tried: ['polls/

Re: Stuck with Django Tutorial Part 4

2023-03-14 Thread Nithin Kumar
question.id or question_id both gave the same result. These are the views. from django.shortcuts import get_object_or_404, render from django.http import HttpResponse, Http404, HttpResponseRedirect from django.template import loader from .models import Choice,Question from django.urls import

Re: Stuck with Django Tutorial Part 4

2023-03-14 Thread Prosper Lekia
Let's see your views. On Tue, Mar 14, 2023, 14:32 Muhammad Juwaini Abdul Rahman wrote: > question_id=question.id > > On Tue, 14 Mar 2023 at 21:22, Nithin Kumar > wrote: > >> Hi, >> >> Stuck with this problem >> >> https://docs.djangoproject.com/en/4.1/intro/tutorial04/ >> >> NoReverseMatch at

Re: Stuck with Django Tutorial Part 4

2023-03-14 Thread Muhammad Juwaini Abdul Rahman
question_id=question.id On Tue, 14 Mar 2023 at 21:22, Nithin Kumar wrote: > Hi, > > Stuck with this problem > > https://docs.djangoproject.com/en/4.1/intro/tutorial04/ > > NoReverseMatch at /polls/2/Reverse for 'vote' with arguments '(2,)' not > found. 1 pattern(s) tried: ['polls/ > My

Stuck with Django Tutorial Part 4

2023-03-14 Thread Nithin Kumar
Hi, Stuck with this problem https://docs.djangoproject.com/en/4.1/intro/tutorial04/ NoReverseMatch at /polls/2/Reverse for 'vote' with arguments '(2,)' not found. 1 pattern(s) tried: ['polls/ {% csrf_token %} {{ question.question_text }} {% if error_message %}{{

Re: my mysite/templates/admin/base_site.html is ignored (tutorial unclear?)

2023-03-12 Thread Amar Zamoum
I just had the same problem, and i realized that i had the templates file in the wrong "mysite" folder. It is easy to confuse the two, so for whoever has the same problem, just check where exactly you have put the "template/admin" folders, because in the tutorial i

Re: Tutorial Django app, part 1

2023-01-24 Thread 'Kasper Laudrup' via Django users
On 24/01/2023 12.14, javier lopez wrote: I'm new with Django. Trying to code te sample of tutorial i got the error that shows in the images. Python version 3.11.1 and 3.9 too. Same error. Anyone can help me? Both errors are mentioned in the tutorial at https://docs.djangoproject.com/en/4.1

Tutorial Django app, part 1

2023-01-24 Thread javier lopez
I'm new with Django. Trying to code te sample of tutorial i got the error that shows in the images. Python version 3.11.1 and 3.9 too. Same error. Anyone can help me? -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubs

Re: Need best tutorial

2022-06-21 Thread Lalit Suthar
ib...@gmail.com wrote: > >> hi there, i am beginner in python. can anyone share python best tutorial >> for web development please > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe

Re: Need best tutorial

2022-06-13 Thread Abdul Qoyyuum
or Flask REST API, then you can try out Django. Good luck! On Monday, June 13, 2022 at 2:59:39 AM UTC+8 ghalib...@gmail.com wrote: > hi there, i am beginner in python. can anyone share python best tutorial > for web development please -- You received this message because you are subs

Re: Need best tutorial

2022-06-12 Thread ramadhan ngallen
Use this from Telusko https://youtube.com/playlist?list=PLsyeobzWxl7poL9JTVyndKe62ieoN-MZ3 On 13 Jun 2022, 01:36 +0300, 'Kasper Laudrup' via Django users , wrote: > On 12/06/2022 07.54, Ghalib Raja wrote: > > hi there, i am beginner in python. can anyone share python best tutorial &g

Re: Need best tutorial

2022-06-12 Thread 'Kasper Laudrup' via Django users
On 12/06/2022 07.54, Ghalib Raja wrote: hi there, i am beginner in python. can anyone share python best tutorial for web development please Learn the basics of Python first then focus on web development later. If you already have some experience with other languages I found this freely

Need best tutorial

2022-06-12 Thread Ghalib Raja
hi there, i am beginner in python. can anyone share python best tutorial for web development please -- 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 it, send an email

Re: tutorial 1 problems from djangoproject website - not working, do not exactly understand

2022-03-24 Thread Samapika Nayak
create a virtual env, install django On Tuesday, March 22, 2022 at 6:43:02 PM UTC+5:30 paul.ka...@gmail.com wrote: > root@videotron:~ # django-admin startproject mysite > root@videotron:~ # python manage.py runserver > python: can't open file 'manage.py': [Errno 2] No such file or directory >

Re: tutorial 1 problems from djangoproject website - not working, do not exactly understand

2022-03-24 Thread Shah Tech
you must first your current directory to your project directory mysite: in window type: cd mysite and then try python manage.py runserver On Thursday, March 24, 2022 at 6:51:53 PM UTC+5 Kasper Laudrup wrote: > On 24/03/2022 08.05, harsh jain wrote: > > Still facing issue ? > > This course will

Re: tutorial 1 problems from djangoproject website - not working, do not exactly understand

2022-03-24 Thread Kasper Laudrup
On 24/03/2022 08.05, harsh jain wrote: Still facing issue ? This course will help you - Advanced web development course online Please fuck off with your spam. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group

Re: tutorial 1 problems from djangoproject website - not working, do not exactly understand

2022-03-24 Thread harsh jain
Still facing issue ? This course will help you - Advanced web development course online On Tuesday, 22 March 2022 at 18:43:02 UTC+5:30 paul.ka...@gmail.com wrote: > root@videotron:~ # django-admin startproject mysite >

tutorial 1 problems from djangoproject website - not working, do not exactly understand

2022-03-22 Thread Paul Kagan
root@videotron:~ # django-admin startproject mysite root@videotron:~ # python manage.py runserver python: can't open file 'manage.py': [Errno 2] No such file or directory root@videotron:~ # ls .Xauthority .elinks .nn .viminfogit .cache .emacs.d.npm

Re: Update to Tutorial 4 - Generic Views

2022-03-11 Thread Heman Okumbo
on your way towards becoming a great developer. On Fri, Mar 11, 2022, 18:48 Antonis Christofides < anto...@antonischristofides.com> wrote: > Hello, > > why do you say that importing of TemplateView is missing? I don't see > TemplateView being used anywhere in that page. > > Regards, > > Antonis

Re: Update to Tutorial 4 - Generic Views

2022-03-11 Thread Antonis Christofides
Hello, why do you say that importing of TemplateView is missing? I don't see TemplateView being used anywhere in that page. Regards, Antonis Antonis Christofides +30-6979924665 (mobile) On 11/03/2022 07.42, Dan Cox wrote: Hi I've been searching on how I might contribute to the tutorials

Update to Tutorial 4 - Generic Views

2022-03-11 Thread Dan Cox
Hi I've been searching on how I might contribute to the tutorials but I can't seem to find a way. If you could help me there I could take this question to a potentially more useful place. Anyway; I am pretty new to Django but I've been following the tutorials and in the Generic Views section

Re: Celery tutorial

2021-10-26 Thread waqar khan
codewithharry geekyshows dennis lvy This is youtube channel name On Tue, Oct 26, 2021 at 9:34 PM parag gupta wrote: > Is there any good celery tutorial that might help? > > -- > You received this message because you are subscribed to the Google Groups > "Django users"

Re: Celery tutorial

2021-10-26 Thread pankaj palmate
Simple is better' than complex article On Tue, 26 Oct, 2021, 9:33 pm parag gupta, wrote: > Is there any good celery tutorial that might help? > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscr

Re: Celery tutorial

2021-10-26 Thread Miracle
Check this out: https://realpython.com/asynchronous-tasks-with-django-and-celery/ https://www.youtube.com/watch?v=THxCy-6EnQM https://www.section.io/engineering-education/django-celery-tasks/ On Tue, Oct 26, 2021 at 5:04 PM parag gupta wrote: > Is there any good celery tutorial that might h

Celery tutorial

2021-10-26 Thread parag gupta
Is there any good celery tutorial that might help? -- 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 it, send an email to django-users+unsubscr...@googlegroups.co

Re: Mozilla Django Tutorial.

2021-10-26 Thread Luigi Cleffi
, >> >> I'm new to Django and I'm currently following the Mozilla tutorial to be >> familiar with this Python written framework. >> >> The issue I have is that after building my database models and typing : >> >> '*python3 manage.py makemigrations*' >>

Re: Mozilla Django Tutorial.

2021-10-26 Thread Luigi Cleffi
ello everyone, > > I'm new to Django and I'm currently following the Mozilla tutorial to be > familiar with this Python written framework. > > The issue I have is that after building my database models and typing : > > '*python3 manage.py makemigrations*' > > I g

Re: Mozilla Django Tutorial.

2021-10-26 Thread KUYESO ROGERS
Class Model name(models.Model): Please show your code On Tue, Oct 26, 2021, 3:47 PM Cheikh SOW wrote: > Hello everyone, > > I'm new to Django and I'm currently following the Mozilla tutorial to be > familiar with this Python written framework. > > The issue I have is that

Mozilla Django Tutorial.

2021-10-26 Thread Cheikh SOW
Hello everyone, I'm new to Django and I'm currently following the Mozilla tutorial to be familiar with this Python written framework. The issue I have is that after building my database models and typing : '*python3 manage.py makemigrations*' I get the error "*AttributeError: '

How to get a chinese django tutorial

2021-10-18 Thread 银色配色
Dear Team, I recently learned django tutorials on django's website, which has tutorials in Chinese, but it's not convenient to visit django's website in my work environment. Is there any way to download the Chinese version of Django tutorial PDF file or epub file? -- You received this message

Re: [DJANGO-TUTORIAL]

2021-10-16 Thread Lalit Suthar
- https://tutorial.djangogirls.org/en/ - https://docs.djangoproject.com/en/3.0/intro/tutorial01/ - https://www.youtube.com/playlist?list=PLEsfXFp6DpzTD1BD1aWNxS2Ep06vIkaeW On Sat, 9 Oct 2021 at 04:05, David Nugent wrote: > For interactive web pages, you are (almost)

Re: [DJANGO-TUTORIAL]

2021-10-08 Thread David Nugent
For interactive web pages, you are (almost) necessarily talking about javascript. Given your background and what you're most likely to be doing next, I would suggest looking at D3.js - Data-Driven Documents (d3js.org) . It is a somewhat large but very mature library for visual

Re: [DJANGO-TUTORIAL]

2021-10-08 Thread Adebayo Michael
Firstly, try to have a basic knowledge on HTML and CSS. Before you start Django. They are relatively simple to understand. Check w3 school for tutorial on them. On Fri, 8 Oct 2021, 3:17 pm Chakresh Singh, < chakresh.si...@alumni.iitgn.ac.in> wrote: > Dear All, > I am beginning m

[DJANGO-TUTORIAL]

2021-10-08 Thread Chakresh Singh
Dear All, I am beginning my first task on Django. I come from a physics background and am a novice in web development. My aim is to develop an interactive web-page where users see some keywords and can choose a pair, which then connects them with a line. I should be able to record these pairs

Re: best tutorial or guidance for social login(facebook or google) using django allauth and rest auth

2021-06-02 Thread DJANGO DEVELOPER
n project's directory or anywhere? >>>>>>>>>> >>>>>>>>>> On Wed, Jun 2, 2021 at 8:39 AM Omkar Parab >>>>>>>>>> wrote: >>>>>>>>>> >>>>>>>>>>> Facebook login won't work with

Re: best tutorial or guidance for social login(facebook or google) using django allauth and rest auth

2021-06-01 Thread Omkar Parab
host it on Heroku or >>>>>>>>>> install >>>>>>>>>> ngrok and try again. >>>>>>>>>> >>>>>>>>>> On Wed, Jun 2, 2021, 7:16 AM DJANGO DEVELOPER < >>

Re: best tutorial or guidance for social login(facebook or google) using django allauth and rest auth

2021-06-01 Thread DJANGO DEVELOPER
y again. >>>>>>>>> >>>>>>>>> On Wed, Jun 2, 2021, 7:16 AM DJANGO DEVELOPER < >>>>>>>>> abubakarbr...@gmail.com> wrote: >>>>>>>>> >>>>>>>>>> and last setti

Re: best tutorial or guidance for social login(facebook or google) using django allauth and rest auth

2021-06-01 Thread Omkar Parab
DJANGO DEVELOPER < >>>>>>>> abubakarbr...@gmail.com> wrote: >>>>>>>> >>>>>>>>> and last settings of my developer app >>>>>>>>> >>>>>>>>> On Wed, Jun 2, 2021 at 6:44 AM DJANG

Re: best tutorial or guidance for social login(facebook or google) using django allauth and rest auth

2021-06-01 Thread DJANGO DEVELOPER
>>>>> abubakarbr...@gmail.com> wrote: >>>>>>> >>>>>>>> and last settings of my developer app >>>>>>>> >>>>>>>> On Wed, Jun 2, 2021 at 6:44 AM DJANGO DEVELOPER < >>>>>>>> abubakar

Re: best tutorial or guidance for social login(facebook or google) using django allauth and rest auth

2021-06-01 Thread DJANGO DEVELOPER
;>>>>>> >>>>>>> On Wed, Jun 2, 2021 at 6:43 AM DJANGO DEVELOPER < >>>>>>> abubakarbr...@gmail.com> wrote: >>>>>>> >>>>>>>> I have 2 sites in my django admin side.

Re: best tutorial or guidance for social login(facebook or google) using django allauth and rest auth

2021-06-01 Thread DJANGO DEVELOPER
> >>>>>> On Wed, Jun 2, 2021 at 6:43 AM DJANGO DEVELOPER < >>>>>> abubakarbr...@gmail.com> wrote: >>>>>> >>>>>>> I have 2 sites in my django admin side. one is localhost:8000 and >>>>>>> o

Re: best tutorial or guidance for social login(facebook or google) using django allauth and rest auth

2021-06-01 Thread DJANGO DEVELOPER
;>>> >>>>> On Wed, Jun 2, 2021 at 6:43 AM DJANGO DEVELOPER < >>>>> abubakarbr...@gmail.com> wrote: >>>>> >>>>>> I have 2 sites in my django admin side. one is localhost:8000 and >>>>>> other is 127.0.0.1:8000 >>&g

Re: best tutorial or guidance for social login(facebook or google) using django allauth and rest auth

2021-06-01 Thread Omkar Parab
bubakarbr...@gmail.com> wrote: >>>> >>>>> I have 2 sites in my django admin side. one is localhost:8000 and >>>>> other is 127.0.0.1:8000 >>>>> >>>>> On Wed, Jun 2, 2021 at 1:05 AM Kasper Laudrup >>>>> w

Re: best tutorial or guidance for social login(facebook or google) using django allauth and rest auth

2021-06-01 Thread DJANGO DEVELOPER
Kasper Laudrup >>>> wrote: >>>> >>>>> On 01/06/2021 21.49, DJANGO DEVELOPER wrote: >>>>> > I am using django-allauth library and i am following this >>>>> > tutorial. >>>>> https://medium.com/geekculture/setup-social-

Re: best tutorial or guidance for social login(facebook or google) using django allauth and rest auth

2021-06-01 Thread Omkar Parab
On Wed, Jun 2, 2021 at 1:05 AM Kasper Laudrup >>> wrote: >>> >>>> On 01/06/2021 21.49, DJANGO DEVELOPER wrote: >>>> > I am using django-allauth library and i am following this >>>> > tutorial. >>>> https://medium.com/geekcul

Re: best tutorial or guidance for social login(facebook or google) using django allauth and rest auth

2021-06-01 Thread DJANGO DEVELOPER
.0.1:8000 >> >> On Wed, Jun 2, 2021 at 1:05 AM Kasper Laudrup >> wrote: >> >>> On 01/06/2021 21.49, DJANGO DEVELOPER wrote: >>> > I am using django-allauth library and i am following this >>> > tutorial. >>> https://medium.com/ge

Re: best tutorial or guidance for social login(facebook or google) using django allauth and rest auth

2021-06-01 Thread DJANGO DEVELOPER
VELOPER wrote: >> > I am using django-allauth library and i am following this >> > tutorial. >> https://medium.com/geekculture/setup-social-authentication-in-django-rest-framework-1afdb675375f >> > < >> https://medium.com/geekculture/setup-social-authentication

Re: best tutorial or guidance for social login(facebook or google) using django allauth and rest auth

2021-06-01 Thread DJANGO DEVELOPER
I have 2 sites in my django admin side. one is localhost:8000 and other is 127.0.0.1:8000 On Wed, Jun 2, 2021 at 1:05 AM Kasper Laudrup wrote: > On 01/06/2021 21.49, DJANGO DEVELOPER wrote: > > I am using django-allauth library and i am following this > > tutorial. >

Re: best tutorial or guidance for social login(facebook or google) using django allauth and rest auth

2021-06-01 Thread Kasper Laudrup
On 01/06/2021 21.49, DJANGO DEVELOPER wrote: > I am using django-allauth library and i am following this > tutorial.  > https://medium.com/geekculture/setup-social-authentication-in-django-rest-framework-1afdb675375f > <https://medium.com/geekculture/setup-social-authentication

Re: best tutorial or guidance for social login(facebook or google) using django allauth and rest auth

2021-06-01 Thread DJANGO DEVELOPER
I am using django-allauth library and i am following this tutorial. https://medium.com/geekculture/setup-social-authentication-in-django-rest-framework-1afdb675375f On Tue, Jun 1, 2021 at 10:37 PM Kasper Laudrup wrote: > On 01/06/2021 19.30, DJANGO DEVELOPER wrote: > > I am gett

Re: best tutorial or guidance for social login(facebook or google) using django allauth and rest auth

2021-06-01 Thread Kasper Laudrup
On 01/06/2021 19.30, DJANGO DEVELOPER wrote: > I am getting "page not found" error. this error is pretty known to me > but I tried all combinations of urls but still getting page not found error. > You most definitely haven't tried all combinations of URLs since even if you would have automated

Re: best tutorial or guidance for social login(facebook or google) using django allauth and rest auth

2021-06-01 Thread DJANGO DEVELOPER
ER > wrote: > >> I need to develop a social login functionality for facebook using django >> allauth and django rest auth. I am struggling from 3 days and I would like >> to someone who can refer me a good tutorial or any other written guidance. >> till now I ha

Re: best tutorial or guidance for social login(facebook or google) using django allauth and rest auth

2021-06-01 Thread Omkar Parab
What error you're getting? On Tue, Jun 1, 2021, 7:37 PM DJANGO DEVELOPER wrote: > I need to develop a social login functionality for facebook using django > allauth and django rest auth. I am struggling from 3 days and I would like > to someone who can refer me a good tutorial or

best tutorial or guidance for social login(facebook or google) using django allauth and rest auth

2021-06-01 Thread DJANGO DEVELOPER
I need to develop a social login functionality for facebook using django allauth and django rest auth. I am struggling from 3 days and I would like to someone who can refer me a good tutorial or any other written guidance. till now I have only implemented some basic code and following

Django Tutorial: please help rewrite form on classes?

2021-03-18 Thread Alexey
I can't rewrite the mysite/polls form into classes.help me. I get different errors every time.     {% csrf_token %}     {{ form.as_p }}     # forms.py: from django import forms from .models import Choice class VoteForm(forms.ModelForm):     choices = [(ch.pk, ch.choice_text) for ch in

Re: Django Tutorial Part 3 Error for Django 3.1

2021-03-17 Thread Ronnie Atuhaire
ike to connect with >> like minded people. >> >> I have experienced an HTTP404 Error while following this tutorial at >> *https://docs.djangoproject.com/en/3.1/intro/tutorial03/ >> <https://docs.djangoproject.com/en/3.1/intro/tutorial03/> * >> >> Writing V

Re: Django Tutorial Part 3 Error for Django 3.1

2021-03-16 Thread Saad Olamilekan
w to Django and would like to connect with >>> like minded people. >>> >>> I have experienced an HTTP404 Error while following this tutorial at >>> *https://docs.djangoproject.com/en/3.1/intro/tutorial03/ >>> <https://docs.djangoproject.com/en/3.1/i

Re: Django Tutorial Part 3 Error for Django 3.1

2021-03-16 Thread Kelvin Sajere
> wrote: > >> Hello everyone, I joined this platform like a week ago not because I am >> experienced but because I am new to Django and would like to connect with >> like minded people. >> >> I have experienced an HTTP404 Error while following this tutorial at &g

Re: Django Tutorial Part 3 Error for Django 3.1

2021-03-16 Thread Joel Goldstick
while following this tutorial at > *https://docs.djangoproject.com/en/3.1/intro/tutorial03/ > <https://docs.djangoproject.com/en/3.1/intro/tutorial03/> * > > Writing Views --I am stuck here, I can't see this page. > > """Take a look in your browser, at “/polls/34/”. It’ll

Django Tutorial Part 3 Error for Django 3.1

2021-03-16 Thread Ronnie Atuhaire
Hello everyone, I joined this platform like a week ago not because I am experienced but because I am new to Django and would like to connect with like minded people. I have experienced an HTTP404 Error while following this tutorial at *https://docs.djangoproject.com/en/3.1/intro/tutorial03

Re: I have learn the tutorial 6 static file for html & css. However the web-site fail to display the intended file. Why & how to fixed it!

2021-01-17 Thread Prashanjeet Halder
sper Laudrup wrote: > Hi Loh, > > Revisit part one of the tutorial again: > > > https://docs.djangoproject.com/en/3.1/intro/tutorial01/#write-your-first-view > > The "Page not found?" box will tell you what is wrong, but it might help > you to read the rest

Re: I have learn the tutorial 6 static file for html & css. However the web-site fail to display the intended file. Why & how to fixed it!

2021-01-17 Thread Kasper Laudrup
Hi Loh, Revisit part one of the tutorial again: https://docs.djangoproject.com/en/3.1/intro/tutorial01/#write-your-first-view The "Page not found?" box will tell you what is wrong, but it might help you to read the rest again for context. Good luck and kind regards, Kasper Laud

Re: getting 404 page not found on part 3 of the tutorial

2020-11-11 Thread Clive Bruton
Sorry, I just checked my version of the tutorial, you load the manage.py through the directory "mysite", and "polls" is in a sub- directory. The way you showed the "/polls/urls.py" implied that was the only file, where in fact the root app/settings are at &q

Re: getting 404 page not found on part 3 of the tutorial

2020-11-11 Thread George Olson
I don't quite follow your note there of just going to: http://127.0.0.1:8000/ without the app name 'polls' following. I believe you have to put the app name following that. It was working before with http://127.0.0.1:8000/polls/, but then I did something and tried to backtrack and the whole

Re: getting 404 page not found on part 3 of the tutorial

2020-11-11 Thread Clive Bruton
On 11 Nov 2020, at 23:37, George P. Olson wrote: So when I go to this url: http://127.0.0.1:8000/polls/ Although the urlpatterns below shows "# ex: /polls/", the defined path has no path elements, so you just need: http://127.0.0.1:8000/ I think. urlpatterns = [ # ex: /polls/

getting 404 page not found on part 3 of the tutorial

2020-11-11 Thread George P. Olson
Hi guys, New here to django. Going through the tutorial, on part 3, I set up the mysite/polls/urls.py file  like this according to the instructions: - from django.urls import path from . import views urlpatterns = [     # ex: /polls/     path('', views.index, name='index'),     # ex

Re: Python Django Tutorial for absolute beginners

2020-08-25 Thread Madhav Nandan
Dear Balaji, Recently I joined your session on google meet and it was nice to experience. I'm good at python, databases and backend technologies. Can I present a session on 'Using databases in python' to the fellow community? Regards, 9170459494 On Mon, Aug 24, 2020 at 10:42 PM Balaji Shetty

Re: two errors in Part 2 of tutorial

2020-08-25 Thread rbarh...@gmail.com
Well, think I got that worked out but I have this problem with timezone, and trying to set the time to current year... FieldError: Cannot resolve keyword 'pub_date_year' into field. Choices are: choice, id, pub_date, question_text This doesn't seem to work: # Get the question that was published

Re: two errors in Part 2 of tutorial

2020-08-25 Thread rbarh...@gmail.com
I think the first serious problem is the dash in the "return self.pub_date..." line. I don't understand at all and now I get a syntax error when I try to restart the shell... On Tuesday, August 25, 2020 at 3:18:23 PM UTC-7 rbarh...@gmail.com wrote: > Here is my code from working on Part 2 of

two errors in Part 2 of tutorial

2020-08-25 Thread rbarh...@gmail.com
Here is my code from working on Part 2 of the first Django app ~~~ from django.db import models from django.utils import timezone import datetime # Create your models here. class Question(models.Model): question_text = models.CharField(max_length=200) pub_date =

Python Django Tutorial for absolute beginners

2020-08-24 Thread Balaji Shetty
Dear Participants *I am sharing you a video to learn Python Django with development of project and app. You can download source code of this video also from github link* https://www.youtube.com/watch?v=EY-XY2HDo_c  *Sourcecode*

Re: Error running Django tutorial

2020-07-20 Thread Lithium
In in mysite/urls.py check the "/" after "polls" in this line: path('polls/', include('polls.urls')) On Friday, June 12, 2020 at 4:52:52 PM UTC+4:30 temitope iyanoye wrote: > I’m using Django 3.0 and I have this same issue following the official > Django tutorial, h

Re: Best Django Rest Framework Tutorial??????

2020-06-12 Thread Siratim Mustaquim
> *De: *David Zea >> *Enviado:*sexta-feira, 12 de junho de 2020 21:44 >> *Para: *django-users@googlegroups.com >> *Assunto: *Re: Best Django Rest Framework Tutorial?? >> >> >> >> Hola, este es un tutorial en la pagina oficial de REST. >&g

Re: Best Django Rest Framework Tutorial??????

2020-06-12 Thread akshatization .
gt; *De: *David Zea > *Enviado:*sexta-feira, 12 de junho de 2020 21:44 > *Para: *django-users@googlegroups.com > *Assunto: *Re: Best Django Rest Framework Tutorial?? > > > > Hola, este es un tutorial en la pagina oficial de REST. > > Hi, this is a tutorial on official pa

RES: Best Django Rest Framework Tutorial??????

2020-06-12 Thread Samuel Nogueira
, 12 de junho de 2020 21:44Para: django-users@googlegroups.comAssunto: Re: Best Django Rest Framework Tutorial?? Hola, este es un tutorial en la pagina oficial de REST.Hi, this is a tutorial on official page of REST.https://www.django-rest-framework.org/tutorial/1-serialization/   El vie., 12 jun

Re: Best Django Rest Framework Tutorial??????

2020-06-12 Thread David Zea
Hola, este es un tutorial en la pagina oficial de REST. Hi, this is a tutorial on official page of REST. https://www.django-rest-framework.org/tutorial/1-serialization/ El vie., 12 jun. 2020 a las 17:43, chaitanya orakala (< chaitu.orak...@gmail.com>) escribió: > Thank

Re: Best Django Rest Framework Tutorial??????

2020-06-12 Thread chaitanya orakala
Thank You guys... On Fri, Jun 12, 2020 at 4:18 PM Rupesh Dahal wrote: > I would suggest the DRF documentation itself. > > On Thu, Jun 11, 2020 at 8:12 PM chalist wrote: > >> I like this channel. Maybe you like, too: >> >> https://www.youtube.com/watch?v=XMu0T6L2KRQ >> >> On

Re: Best Django Rest Framework Tutorial??????

2020-06-12 Thread Rupesh Dahal
I would suggest the DRF documentation itself. On Thu, Jun 11, 2020 at 8:12 PM chalist wrote: > I like this channel. Maybe you like, too: > > https://www.youtube.com/watch?v=XMu0T6L2KRQ > > On Thu, 11 Jun 2020 at 15:04, Mohamed SAMAKE > wrote: > >> https://agiliq.com/blog/2019/04/drf-polls/ >>

Re: Error running Django tutorial

2020-06-12 Thread temitope iyanoye
I’m using Django 3.0 and I have this same issue following the official Django tutorial, has anyone been able to fix it? Please I need help, thanks -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this grou

Re: Best Django Rest Framework Tutorial??????

2020-06-11 Thread chalist
I like this channel. Maybe you like, too: https://www.youtube.com/watch?v=XMu0T6L2KRQ On Thu, 11 Jun 2020 at 15:04, Mohamed SAMAKE wrote: > https://agiliq.com/blog/2019/04/drf-polls/ > > Le mer. 10 juin 2020 à 20:07, chaitanya orakala > a écrit : > >> which is best among all those channels >>

Re: Best Django Rest Framework Tutorial??????

2020-06-11 Thread Mohamed SAMAKE
https://agiliq.com/blog/2019/04/drf-polls/ Le mer. 10 juin 2020 à 20:07, chaitanya orakala a écrit : > which is best among all those channels > ? > > On Wed, Jun 10, 2020 at 3:59 PM cosmos multi > wrote: > >> on youtube there are very good >> >> El mié., 10 jun. 2020 a las 14:40, chaitanya

Re: Best Django Rest Framework Tutorial??????

2020-06-10 Thread chaitanya orakala
which is best among all those channels ? On Wed, Jun 10, 2020 at 3:59 PM cosmos multi wrote: > on youtube there are very good > > El mié., 10 jun. 2020 a las 14:40, chaitanya orakala (< > chaitu.orak...@gmail.com>) escribió: > >> Thank you jacklin >> >> >> On Wed, Jun 10, 2020 at 3:00 PM Jack

Re: Best Django Rest Framework Tutorial??????

2020-06-10 Thread cosmos multi
on youtube there are very good El mié., 10 jun. 2020 a las 14:40, chaitanya orakala (< chaitu.orak...@gmail.com>) escribió: > Thank you jacklin > > > On Wed, Jun 10, 2020 at 3:00 PM Jack Lin wrote: > >> DOCUMENTATION >> >> >> 在 2020年6月11日 於 上午2:58:42, chaitanya orakala

Re: Best Django Rest Framework Tutorial??????

2020-06-10 Thread chaitanya orakala
Thank you jacklin On Wed, Jun 10, 2020 at 3:00 PM Jack Lin wrote: > DOCUMENTATION > > > 在 2020年6月11日 於 上午2:58:42, chaitanya orakala (chaitu.orak...@gmail.com) 寫下: > > can anyone please respond ?? > > On Wed, Jun 10, 2020 at 9:51 AM Sai wrote: > >> Hi djangoians, >> I want to learn

Re: Best Django Rest Framework Tutorial??????

2020-06-10 Thread Jack Lin
DOCUMENTATION 在 2020年6月11日 於 上午2:58:42, chaitanya orakala (chaitu.orak...@gmail.com) 寫下: can anyone please respond ?? On Wed, Jun 10, 2020 at 9:51 AM Sai wrote: > Hi djangoians, > I want to learn django rest framework, may i please know which is best > resource in online market or

Re: Best Django Rest Framework Tutorial??????

2020-06-10 Thread chaitanya orakala
can anyone please respond ?? On Wed, Jun 10, 2020 at 9:51 AM Sai wrote: > Hi djangoians, > I want to learn django rest framework, may i please know which is best > resource in online market or any youtube links or udemy courses??? > > Thanks in advance. > > -- > You received this

Best Django Rest Framework Tutorial??????

2020-06-10 Thread Sai
Hi djangoians, I want to learn django rest framework, may i please know which is best resource in online market or any youtube links or udemy courses??? Thanks in advance. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from

Re: Why is "Hello World!" alternating with Django welcome page after following tutorial?

2020-05-30 Thread Thomas G. McNeill
Well, never mind. I changed some stuff, and then I changed it all back, as far as I know. But now it is working correctly. I have no idea what I changed. On Saturday, May 30, 2020 at 5:41:52 PM UTC-6, Thomas G. McNeill wrote: > > I just followed this tutorial to create the simplest po

Why is "Hello World!" alternating with Django welcome page after following tutorial?

2020-05-30 Thread Thomas G. McNeill
I just followed this tutorial to create the simplest possible Django application: https://aws.amazon.com/getting-started/hands-on/deploy-python-application/ I used *campaign* instead of *tutorial* and *app* instead of *hello_world* because I intend to transform the tutorial into a simple

Re: A learner following a Mosh Tutorial on Django and having a problem saving a product to SQLite

2020-05-30 Thread Iain Stewart
Hi Matt. Typing in to your pycharm console: py manage.py migrate --fake [your_app_Name] zero where your_app_name is PyShop or whatever it is called, that should delete the previous migrations/ reset the tracking I think. Iain On Sat, 30 May 2020 at 18:49, Matt D wrote: > >> ^ Is this where

Re: A learner following a Mosh Tutorial on Django and having a problem saving a product to SQLite

2020-05-30 Thread Matt D
> > > ^ Is this where you deleted the migrations? I keep receiving this error when I enter py manage.py migrate products: -- 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 it, send

  1   2   3   4   5   6   7   8   9   10   >