Re: I con't able to view the image in the webpage.

2022-11-03 Thread 'Kasper Laudrup' via Django users
On 03/11/2022 06.01, MaheshKumar wrote: i cont able to view the image in the webpage,  found an error on path. Well that sucks. I'm sure it's a nice image. Don't worry though, there are many other webpages with many more nice images you can look at instead. Hope that helps. Kind regards,

Multistape data send to database

2022-11-03 Thread shiva singh
hello Everyone can anyone give a idea to how can send multistape form data into data base with validation -- 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 djang

Re: I am unable to view images in webpage which is given in html

2022-11-03 Thread muwaga micheal
Can you share the code? On Wednesday, November 2, 2022 at 3:11:37 PM UTC+3 MaheshKumar wrote: > I have given the photos in the database but it does not displays in the > webpage. > > [image: Screenshot (25).png] > -- You received this message because you are subscribed to the Google Groups "D

Using django 4.1 code in django 3.2

2022-11-03 Thread Lakshyaraj Dash
Is there any problem if I deploy my django app written with django 4.1 in django 3.2 on render ? Please 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 djan

Re: Using django 4.1 code in django 3.2

2022-11-03 Thread 'Steven Mapes' via Django users
It'll depend on whether your code is 3.2 compatible or not so you'd need to test it and check dependencies first On Thursday, 3 November 2022 at 09:28:40 UTC Kasper Laudrup wrote: > On 03/11/2022 10.18, Lakshyaraj Dash wrote: > > Is there any problem if I deploy my django app written with django

Re: Using django 4.1 code in django 3.2

2022-11-03 Thread subin
Please let me know if that sounds okay. On Thu, Nov 3, 2022 at 2:56 PM 'Steven Mapes' via Django users < django-users@googlegroups.com> wrote: > It'll depend on whether your code is 3.2 compatible or not so you'd need > to test it and check dependencies first > > On Thursday, 3 November 2022 at 0

Re: Using django 4.1 code in django 3.2

2022-11-03 Thread subin
I will look forward to meeting you on July 11 On Thu, Nov 3, 2022 at 10:18 AM Lakshyaraj Dash < dashlakshyaraj2...@gmail.com> wrote: > Is there any problem if I deploy my django app written with django 4.1 in > django 3.2 on render ? > Please help > > -- > You received this message because you ar

Re: Error: pg_config executable not found. (psycopg2 for postgres in docker not successfully installed)

2022-11-03 Thread Adeyemi Deji
Also, i tried psycopg2-binary ànd still add the same error issue but when i updated the Dokerfile, things got normal. On Mon, 31 Oct 2022, 19:51 'Kasper Laudrup' via Django users, < django-users@googlegroups.com> wrote: > On 31/10/2022 19.32, Adeyemi Deji wrote: > > > > Hello, fam! > > > > Found

Re: I am unable to hash my password.

2022-11-03 Thread ritik sahoo
your super_staff is not active (blank=True) On Thu, Nov 3, 2022 at 12:06 PM Saksham Khanal wrote: > Here you go > On Wednesday, 2 November 2022 at 9:12:54 pm UTC+5:45 hubak...@gmail.com > wrote: > >> Hi Saksham, please let us see your user model.py and views.py. >> >> On Wed, Nov 2, 2022 at 2:5

Django Channels tests: Task x got Future y attached to a different event loop

2022-11-03 Thread Jens de Ruiter
Hi everyone, I have a question regarding Django Channels testing. I've asked the question before on StackOverflow, so more info can be found here: https://stackoverflow.com/questions/74154013/django-channels-tests-task-x-got-future-y-attached-to-a-different-event-loop Any help would be greatly a

Re: got error in terminal, ubuntu

2022-11-03 Thread Jana (Codi Coop)
Make sure you've installed Django on your system, or you virtual environment if you're using one. If you've installed Django on your virtual environment, the problem might be that you haven't activated it. Django's website has some instructions on this: https://docs.djangoproject.com/en/4.1/top

Re: Multistape data send to database

2022-11-03 Thread ritik sahoo
you can use filter attribute to send data to database or by using objects.filter you can get the multiple data from your database you will pass the data in URL(Dynamic URL) () On Thu, Nov 3, 2022 at 2:44 PM shiva singh wrote: > hello Everyone can anyone give a idea to how can send multistape for

Most efficient method for fetching data

2022-11-03 Thread Dhanya Aleena
Which among the below is the most efficient method to get the *recent transactions*? *1##using subquery* transactions = list( Transaction.objects.filter( pk__in=Subquery( Transaction.objects.filter(user=self.request.user) .order_

Re: I am unable to view images in webpage which is given in html

2022-11-03 Thread Mario Shaya
employeedetail.empPhoto.url Le jeudi 3 novembre 2022 à 22:13:41 UTC+3, subtitle indo a écrit : > Sorry to write again so quickly. > > On Thu, Nov 3, 2022 at 10:15 AM muwaga micheal wrote: > >> Can you share the code? >> >> On Wednesday, November 2, 2022 at 3:11:37 PM UTC+3 MaheshKumar wrote: >>

Re: I was facing Type Error

2022-11-03 Thread Mario Shaya
could you show your code? Le jeudi 3 novembre 2022 à 22:48:22 UTC+3, subtitle indo a écrit : > Please let me know if that is okay. > > On Wed, Nov 2, 2022 at 6:37 AM MaheshKumar wrote: > >> Today i created the project to create an database and then to display >> those datas in database in list

Re: I am unable to view images in webpage which is given in html

2022-11-03 Thread ritik sahoo
First you check,you may not be include TEMPLATE_TAG in your settings.py file On Fri, 4 Nov, 2022, 8:02 am Mario Shaya, wrote: > employeedetail.empPhoto.url > > Le jeudi 3 novembre 2022 à 22:13:41 UTC+3, subtitle indo a écrit : > >> Sorry to write again so quickly. >> >> On Thu, Nov 3, 2022 at 10

Re: How to use choices in model field

2022-11-03 Thread Aaryan R Soni
Thanks, that worked, Thanks for your help On Wed, Nov 2, 2022, 9:57 PM Julio Cojom wrote: > When you change the status to Verified, you are only changing the object > instance in memory, to save it to the database, you need to call the method > save. > > verification.save() at the end should mak