Re: Webhook integration

2021-10-23 Thread Sophia Iroegbu
Oh okay. I need help writing the webhook. The webhook is to refund user. I am using flutterwave integration. It's a bit difficult to understand. The idea is when a user subscribe, django api will refund the user and notify flutterwave to do same. On Sat, Oct 23, 2021, 7:27 PM Kasper Laudrup wr

Re: Webhook integration

2021-10-23 Thread Kasper Laudrup
On 23/10/2021 19.53, Sophia Iroegbu wrote: I want to refund users after they subscribe to the app. I don't have a small budget as it's a small project. What's your charge? I wouldn't be interested in the job personally. It was mostly to point out that if you want someone to work for you, yo

Re: Webhook integration

2021-10-23 Thread Sophia Iroegbu
I want to refund users after they subscribe to the app. I don't have a small budget as it's a small project. What's your charge? On Sat, Oct 23, 2021, 6:47 PM Kasper Laudrup wrote: > On 23/10/2021 17.24, Sophia Iroegbu wrote: > > I need help writing a webhook Endpoint that refunds a user. > > >

Re: Modeform Foreign key column not working

2021-10-23 Thread Lalit Suthar
cool! mention not :) On Thu, 21 Oct 2021 at 19:57, Aruna Priya Nagarajan < arunapriya.nagara...@gmail.com> wrote: > > yeah, it is a foreign key and I have put integer field instead of foreign > key in the model. I changed it now and its working by itself without > specifying ModelChoiceField. > >

Re: CRUD OPERATION CLASS BASED API

2021-10-23 Thread Lalit Suthar
this series of blogs really helped me 1. https://www.agiliq.com/blog/2019/04/drf-polls/ 2. https://www.agiliq.com/blog/2019/04/drf-polls-related-objects/ 3. https://www.agiliq.com/blog/2019/05/drf-polls-model-serializers/ 4. https://www.agiliq.com/blog/2019/05/django-r

Re: Webhook integration

2021-10-23 Thread Kasper Laudrup
On 23/10/2021 17.24, Sophia Iroegbu wrote: I need help writing a webhook Endpoint that refunds a user. I need help on this. The django is an APIs that the flutter app is consuming What have you tried so far and what are you having problems with? If you want someone to do it for you, how much

Re: I have an error in django project

2021-10-23 Thread Sebastian Jung
Hello, Please change code: SubCategory.objects.filter(productcategory_id=productcategory_id).order_by('name') To SubCategory.objects.filter(id=productcategory_id).order_by('name') Regards Yabesh schrieb am Sa., 23. Okt. 2021, 17:18: > > https://stackoverflow.com/questions/69687988/djang

Webhook integration

2021-10-23 Thread Sophia Iroegbu
I need help writing a webhook Endpoint that refunds a user. I need help on this. The django is an APIs that the flutter app is consuming -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails fr

I have an error in django project

2021-10-23 Thread Yabesh
https://stackoverflow.com/questions/69687988/django-core-exceptions-fielderror-cannot-resolve-keyword-productcategory-id-i Can someone please help me to resolve this error. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from t

have error in django project

2021-10-23 Thread Yabesh
Help me to fix this error using this link. Stackoverflow my error -- You received this message because you are subscribed to the Google Groups "Django users" group. To u

Re: DJNAGO Many to Many field MultiSelect Into DropdownList

2021-10-23 Thread danielp...@gmail.com
you can use django-ajax-selects library https://github.com/crucialfelix/django-ajax-selects/ Define a lookup channel: yourapp/lookups.py from ajax_select import register, LookupChannel from .models import Tag @register('tags') class TagsLookup(LookupChannel): model = Tag def get

CRUD OPERATION CLASS BASED API

2021-10-23 Thread Lahu Chavan
Hey DjangoUsersConnection, How to use common(single) url for combining ADD, UPDATE, GET, DELETE class based api. please give me an example with brief information. thank you so much -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsu

Re: Django admin redirects behind nginx proxy subpath

2021-10-23 Thread 银色配色
I don't know but I'm interested in that 在2021年10月20日星期三 UTC+8 上午3:37:04 写道: > > I am running a small django app with django admin. > In fact, I only use django admin to edit a few models. > > It works fine in local and behind a simple proxy reverse, but now I have > this kind a rewrite that chan