looking for an expert django developer

2021-05-21 Thread ryan yadav
i need an expert django developer ,who alone can build the whole platform its a medical edtech startup and i have made 30% of total development i need further collaboration to make it right on time . this works is going to be contract basic or may be it can lend you a full time interested

Re: Can you help me solve this

2021-05-21 Thread Eric 247ERICPOINTCOM
Hi Sameer, Just make sure you have run python manage.py migrate after adjusting your models.py. I ran into that error and solved it by migration. *Kind Regards* *Eric Bawakuno | Computer Engineer | +27795639700| +27 815152254 | eric...@gmail.com | **Address**: 29 Rochester Road, Observatory |

Re: Help me

2021-05-21 Thread Boris Pérez
Another way, maybe more familiar to u is to create the form directly on the template (html) ..something like And then in the view: def your_view(request): if request.method == "POST": return HttpResponse("My name is", request.POST["name_1"] else: return HttpResponse("Error, method must be

Re: How to properly install Django patch ?

2021-05-21 Thread Boris Pérez
You can not do a downgrade, until next release??? Greetings 2021-05-21 4:57 GMT-04:00, ant an : > Folks, > There is a patch for latest Django version (2.2.23) , fixed a bug which > break my site. > and next release is due to 1 June. > > Can not wait that long, Is there some standard way to patch

How to properly install Django patch ?

2021-05-21 Thread ant an
Folks, There is a patch for latest Django version (2.2.23) , fixed a bug which break my site. and next release is due to 1 June. Can not wait that long, Is there some standard way to patch a production server ? Thanks! - An -- You received this message because you are subscribed to

[Django + Heroku] Timeout when receiving a request

2021-05-21 Thread Robin Bonnin
Hello! I maintain a Django app hosted on Heroku. We use DRF intensively to serve our FE app. Django version: 2.2.21. We have an endpoint that works perfectly well 99% of the time, but sometimes, it timeouts. We use Sentry to monitor and you can find the traces here

Re: Help me

2021-05-21 Thread Théodore KOSSI
thanks you very much Le ven. 21 mai 2021 à 11:53, sebasti...@gmail.com a écrit : > Here are a tutorial for django with explanations how you can use forms in > django > > https://tutorial.djangogirls.org/en/django_forms/ > > gabriels...@gmail.com schrieb am Freitag, 21. Mai 2021 um 12:32:51

Re: Help me

2021-05-21 Thread sebasti...@gmail.com
Here are a tutorial for django with explanations how you can use forms in django https://tutorial.djangogirls.org/en/django_forms/ gabriels...@gmail.com schrieb am Freitag, 21. Mai 2021 um 12:32:51 UTC+2: > From django import forms > Class Feedback(forms.form): > name =

Re: Help me

2021-05-21 Thread 712189512
>From django import forms Class Feedback(forms.form): name = forms.CharField(widget=forms.TextInput) Just like that and you import it into your views If you want more information you can read the django documentation too On Fri, 21 May 2021 at 09:44 Théodore KOSSI wrote: > okay I

Re: Help me

2021-05-21 Thread Théodore KOSSI
okay I understand. So , I want to create A general form. What can I use? Le ven. 21 mai 2021 à 10:33, 712189512 a écrit : > Both forms are pretty easy to use > Model form makes it more simpler because it takes your model and creates a > form out of your model for you whereas general form you

Re: Help me

2021-05-21 Thread 712189512
Both forms are pretty easy to use Model form makes it more simpler because it takes your model and creates a form out of your model for you whereas general form you have to do everything from scratch On Fri, 21 May 2021 at 09:29 Théodore KOSSI wrote: > general usage form. Tell me what the

Re: Help me

2021-05-21 Thread Théodore KOSSI
general usage form. Tell me what the importance of model form? Le ven. 21 mai 2021 à 10:27, 712189512 a écrit : > It depends on what you want to do > Are creating the form from a model or a general usage form > > On Fri, 21 May 2021 at 09:24 Théodore KOSSI > wrote: > >> >> Hellooo guys, I

Re: Help me

2021-05-21 Thread 712189512
It depends on what you want to do Are creating the form from a model or a general usage form On Fri, 21 May 2021 at 09:24 Théodore KOSSI wrote: > > Hellooo guys, I need your help. I want to create a form in django and I > don't know exactly what i can use to create it. > > -- >

Re: django utils Integrity error

2021-05-21 Thread Peter Kirieny
would you lhelp with this please am trying to paginate but its not working and i think its because of the warning local variable 'products' is not used def store(request): category = request.GET.get('Category') if category is None: products =

Help me

2021-05-21 Thread Théodore KOSSI
Hellooo guys, I need your help. I want to create a form in django and I don't know exactly what i can use to create it. -- theodoros17@python-developer -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop

Re: django utils Integrity error

2021-05-21 Thread Peter Kirieny
hanks but ita was already solved On Wed, 19 May 2021 at 15:52, Antonis Christofides < anto...@antonischristofides.com> wrote: > Could you show the full error message? > > Antonis Christofides > +30-6979924665 (mobile) > > On 19/05/2021 02.36, Peter Kirieny wrote: > > am adding class category in