Re: Re: Error with filter queryset

2020-02-09 Thread maninder singh Kumar
have you tried "OneToOneField" ? I am wondering about a many to one field to User [image: --] Maninder Kumar [image: http://]about.me/maninder.s.kumar On Mon, Feb 10, 2020 at 12:01 AM BRAJESH KUMAR wrote: > I have a local host website

Re: Regarding Summer internship opportunities

2020-02-09 Thread Karan Mittal
Here's my linkedin profile for your reference. https://www.linkedin.com/in/karansmittal On Mon, 10 Feb, 2020, 10:04 AM Karan Mittal, wrote: > Hey Guys, If you are interested, then share your resume with me. I have a > requirement for python developers and javascript developers. > Regards, >

Re: Regarding Summer internship opportunities

2020-02-09 Thread Karan Mittal
Hey Guys, If you are interested, then share your resume with me. I have a requirement for python developers and javascript developers. Regards, Karan Mittal On Mon, 10 Feb, 2020, 2:43 AM Anupriya Nishad, wrote: > My name is Anupriya Nishad and I’m a third-year B.Tech student at the > Madan

Re: Regarding Summer internship opportunities

2020-02-09 Thread Ankit Raj
My name is Ankit Raj and I'm also looking for internship opportunities related to Data Science, Python, ML. Please let me know if there is an opportunity for me. On Mon, Feb 10, 2020 at 3:03 AM Arjun Baidya wrote: > if you interested in data science then you can work with me in virtually. >

Re: Regarding Summer internship opportunities

2020-02-09 Thread Ab Sporting Club
Lage rho sister On 10 Feb 2020 02:43, "Anupriya Nishad" wrote: > My name is Anupriya Nishad and I’m a third-year B.Tech student at the > Madan Mohan Malaviya University of Technology, Gorakhpur. > I am extremely interested in doing an internship in the following fields- > 1.Web Development

Re: Adding a verbose_name to id field

2020-02-09 Thread Jason
You just need to use AutoField -- 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: Regarding Summer internship opportunities

2020-02-09 Thread Arjun Baidya
if you interested in data science then you can work with me in virtually. Thanks On Mon, Feb 10, 2020 at 3:13 AM Anupriya Nishad wrote: > My name is Anupriya Nishad and I’m a third-year B.Tech student at the > Madan Mohan Malaviya University of Technology, Gorakhpur. > I am extremely interested

Regarding Summer internship opportunities

2020-02-09 Thread Anupriya Nishad
My name is Anupriya Nishad and I’m a third-year B.Tech student at the Madan Mohan Malaviya University of Technology, Gorakhpur. I am extremely interested in doing an internship in the following fields- 1.Web Development using Django 2. Machine Learning 3.Python Please let me know if there is any

Re: Problem with Admin Page

2020-02-09 Thread Gil Obradors
Hi Alessandro, can you report python version and django version? Missatge de Alessandro D' Oronzo del dia dg., 9 de febr. 2020 a les 19:38: > Hi everyone, > I have a problem with local web server and admin page. > When I try to connect to admin page the web server of Django close without >

I'm looking for job for intern position in Amsterdam

2020-02-09 Thread göktürk sığırtmaç
Hi everyone. I'm looking for job for intern position in Amsterdam. I'm living in İzmit/Kocaeli/Turkey. I'm student at Kocaeli University pursuing physics. I'm 20 years old. I will be in Amsterdam at summer vacation (July/August/September so approximately 75 days) for development my language

to add counter to an object of a table

2020-02-09 Thread BRAJESH KUMAR
Hi ,I have a product details db class with few details for each object of that class, need help to add a counter. Thanks,Brajesh  Sent from Mail for Windows 10  -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and

[Django] Error occured while saving a form created through model formset factory

2020-02-09 Thread Dilipkumar Noone
I am a Django learner. 1.I have a requirement to create the multiple forms in a single page for a model. 2.So i created the formset using modelformset_factory. 3.I have 2 models. a)ModelRegister b)ModelGSPRequest. 4.ModelGSPRequest has a field named registered_model which is a foreignKey to

Problem with Admin Page

2020-02-09 Thread Alessandro D' Oronzo
Hi everyone, I have a problem with local web server and admin page. When I try to connect to admin page the web server of Django close without errors. Do you have any ideas? Thanks so much! -- You received this message because you are subscribed to the Google Groups "Django users" group. To

RE: Re: Error with filter queryset

2020-02-09 Thread BRAJESH KUMAR
I have a local host website working with some page showing few details of one of many products with a data associated for usage like zoom car rental. Facing issues while trying to add a counter and have it updated by day. Eg: if I have a product a available 10 units for next 10 days and it gets

Re: Error with filter queryset

2020-02-09 Thread Chucky Mada Madamombe
Thanks Farai! Regards Chuck G. Madamombe NAM: +264 81 842 1284 RSA: +27 78 208 7034 Twitter: @chuckygari Skype: chuckygari Facebook: Chucky Mada Madamombe LinkedIn: Chucknorris Garikayi Madamombe On Sun, 9 Feb 2020, 18:14 Farai M wrote: > The status is a foreign ID u can use choices if the

Re: Error with filter queryset

2020-02-09 Thread Chucky Mada Madamombe
Antje, Thanks very much for your help! Regards Chuck G. Madamombe NAM: +264 81 842 1284 RSA: +27 78 208 7034 Twitter: @chuckygari Skype: chuckygari Facebook: Chucky Mada Madamombe LinkedIn: Chucknorris Garikayi Madamombe On Sun, 9 Feb 2020, 15:25 Antje Kazimiers wrote: > Hi Chuck, > > Status

Re: Adding a verbose_name to id field

2020-02-09 Thread Bruckner de Villiers
Thank you Mike & Jason. I agree - messing around with the id is not the brightest idea I've ever conceived. However, the Django 3 documentation is somewhat mute on auto-incrementing, but I'll continue searching Stack & Mozilla. Have a great evening (I am GMT+2). Regards, Bruckner de Villiers

Re: Error with filter queryset

2020-02-09 Thread Farai M
The status is a foreign ID u can use choices if the status is not dynamically changed by the users . Otherwise you will need to pass the selected status from fronted or hardcode it. On Sun, Feb 9, 2020, 2:58 PM Chuck G. Madamombe wrote: > Hello, > > I want to filter data in the database to

Re: Error with filter queryset

2020-02-09 Thread Antje Kazimiers
Hi Chuck, Status in your example is not a text field, but a Foreign Key, that means a reference to a record in another table Task_Status, you see that here: Status = models.ForeignKey(Task_Status, on_delete=models.CASCADE) You need to filter on the attribute within Task_Status, which has

Error with filter queryset

2020-02-09 Thread Chuck G. Madamombe
Hello, I want to filter data in the database to retrieve only those tasks with status='In progress'. I have used the filter queryset, but am getting an error. Please help. *Here is my view (Filter tasks by their status):* def tasks_in_progress(request): tasks =

Re: Contractions in Django 3.0 and Django 2.2

2020-02-09 Thread One Above All
I just replaced single quotes with that special character from response string using replace method of string, ‪On Sat, Feb 8, 2020 at 8:41 PM ‫אורי‬‎ wrote:‬ > For example in this case: > > if (django.VERSION >= (3, 0)): > ... > else: > ... > אורי > u...@speedy.net > > > On Sat, Feb 8,