s3-File Upload Generate Error Message: FileNotFoundError

2023-01-03 Thread ramdom Use
Hello to All! I need your help figuring out how to solve this issue I'm having while trying to upload directly to s3 bucket. I have a function that works perfectly outside of django, I'm trying to implement it within django so as to be able to upload directly to s3. 1. I do want to first save

Request

2023-01-03 Thread Jadhav nandu naik
Hey guys add me in -- 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.com. To view this discussion on the web visit

Re: Card-Payment Integration.

2023-01-03 Thread Satyajit Barik
You can try Paypal or Braintree payment gateway. Both work perfectly. Regards, Satyajit On Tue, Jan 3, 2023 at 9:56 AM Mike Dewhirst wrote: > On 3/01/2023 3:12 pm, Harshwardhan Waghela wrote: > > Other Then Stripe ? > > > Speak to your favourite bank and see what they offer. That's what I did

I am a new member here

2023-01-03 Thread Anoop Jas
Hi I am a beginner in django. I have a currency master page. The currencies are listing in a combo list. After selection i need to show the corresponding exchange rate in the same page. There is a currency master table in which currency name and corresponding exg rate are saved. how can i

i want to use .db file in django application

2023-01-03 Thread Sam Stephen
How can i connect employee.db file to django? can any1 please help or share any tutorial -- 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

Re: How to access the value of a field that failed validation

2023-01-03 Thread Jason
you'll need to implement custom validators to override the default `ValidationError` message for the fields. some fields include this functionality by default, ie DecimalField ( https://github.com/django/django/blob/main/django/forms/fields.py#L419-L428), others don't On Monday, January 2,