Re: regular expression in an url showing post details

2020-05-26 Thread Ousseynou Diop
Hello friend the error is you've used a different name for regex. Try to change "ids" in URLs to "id". Example: path('posts/?P[0-9]+', views.show), Or easily with this : path("posts//", views.show) Le mardi 26 mai 2020 00:50:35 UTC, Tiempo a écrit : > > Hi, > my name is Tiempo and I'm new with

Re: TYPE ERROR at /login/: ; Help me Resolve

2020-05-23 Thread Ousseynou Diop
Hello Guys, the problem is that you call the authenticated method, don't do this. Remove the parenthesis, print(request.user.is_autheticated) Le samedi 23 mai 2020 07:06:08 UTC, Madhav Nandan a écrit : > > Hello all, > > I was making an eCommerce web application using Django 2.X. > > I'm getting

Re: Django and AWS backend MENTOR NEEDED

2020-03-14 Thread Ousseynou Diop
Hello how i can help you ? You can reach out to me here @xarala221 https://ousseynoudiop.com Le vendredi 13 mars 2020 20:48:59 UTC, Harsh Tibrewal a écrit : > > Hi, I have been trying to learn

Re: Mentor needed

2020-03-13 Thread Ousseynou Diop
Hello how i can help you ? You can reach out to me here @xarala221 https://ousseynoudiop.com Le mercredi 11 mars 2020 10:09:20 UTC, ola neat a écrit : > > Hey guyz I'm applying for GSOC {django} & i pretty much need help > (mentors), > -- You received this message because you are

Re: I need a mentor please

2020-03-13 Thread Ousseynou Diop
Hello how i can help you ? You can reach out to me here @xarala221 https://ousseynoudiop.com Le vendredi 13 mars 2020 11:30:58 UTC, Awverosuo Trust a écrit : > > I need a mentor, please -- You received this message because you are subscribed to the Google Groups "Django users" group. To

Re: basic_app not provide the User how to reslove ?

2019-11-27 Thread Ousseynou Diop
ers+unsubscr...@googlegroups.com. > To view this discussion on the web visit > https://groups.google.com/d/msgid/django-users/164892b0-aaba-4b55-b864-3cdbce1c0f20%40googlegroups.com > <https://groups.google.com/d/msgid/django-users/164892b0-aaba-4b55-b864-3cdbce1c0f20%40googlegroups.co

Re: regarding django hosting

2019-01-26 Thread Ousseynou Diop
jango-users. > To view this discussion on the web visit > https://groups.google.com/d/msgid/django-users/CACiphSXRrsaB%3D7NC33Eq9yzZaKramfEFvPhzx5-0WOFm0Vucdg%40mail.gmail.com > <https://groups.google.com/d/msgid/django-users/CACiphSXRrsaB%3D7NC33Eq9yzZaKramfEFvPhzx5-0WOFm0Vucdg%40

Re: How do I display the human readable name of a choice?

2018-09-06 Thread Ousseynou Diop
Hi friend , use this function to display the choices field. models.py class Article(models.Model): ARTICLE_CHOICES = ( ) status = models.CharField(max_length=120, choices=ARTICLE_CHOICES, ) in your templates {% article in articles %} {{artcile.get_status_display}} {%