Re: Django books

2024-01-31 Thread Goke Aruna
Yes On Tue, 30 Jan 2024, 2:01 am AshiQul Islam Munna, wrote: > Can I get the 'Django for Beginners Build websites with Python and Django > By William S. Vincent' pdf for free? > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscr

Re: Project together

2023-12-14 Thread Goke Aruna
My number is +2348090444023 On Thu, 23 Nov 2023, 7:13 pm Youssef Bachraoui, wrote: > Hi developer i search to make a group on WhatsApp to begin a project > together anyone interested about that? > > -- > You received this message because you are subscribed to the Google Groups > "Django users" g

Re: Modeform Foreign key column not working

2021-10-26 Thread Aruna Priya Nagarajan
'id']) connectionform.save() messages.success(request, f"sucess!") else: messages.success(request, f"Failure!") return render(request,'main/ssaddconnection.html',{"cform": connectionform,"CanUseMod":UserM

Re: Modeform Foreign key column not working

2021-10-21 Thread Aruna Priya Nagarajan
is `ConnectionTypes` a foreign key to `ConnectionDetails`? > in that case you don't need to put it as a field in form, it will be added > automatically in the form. > On Wednesday, 20 October 2021 at 18:47:44 UTC+5:30 Aruna Priya wrote: > >> Hi, >> >> I am trying to create

Modelform foreign key not working

2021-10-20 Thread Aruna Priya Nagarajan
alse db_table ='connection_types' verbose_name = 'connection_types' verbose_name_plural = 'connection_types' Can you please let me know what is the mistake am making? Thanks, Aruna -- You received this message because you are subscrib

Modeform Foreign key column not working

2021-10-20 Thread Aruna Priya
Hi, I am trying to create a form from model and the model has a foreign key and am not able to populate the values from the column it refers to. My form, class ConnectionForm(forms.ModelForm): connection_type = forms.ModelChoiceField(queryset=ConnectionTypes.objects.all(), to_field_name='con

Re: Need to volunteer in a django project to emprove my knowledge

2021-06-18 Thread Goke Aruna
Dear Williams I am interested in learning with you. Regarde On Thu, Jun 17, 2021, 1:13 PM Williams Andy Inc wrote: > I currently have a django project going on incase you want to learn or > contribute or collaborate for learning. > > https://swiss-social.herokuapp.com/ > > code https://github.

Redirect User on First Log In

2009-01-05 Thread Aruna
I'm trying to redirect a user on their first log in, to a special welcome page. Subsequent logins will go to a regular page. Is there a way to do that in the templates? Does Django have a way to check if it's a users first login? --~--~-~--~~~---~--~~ You received