Re: I cannot output the value of the foreign key via jsonresponse serealize

2020-12-07 Thread Derek
You may want to try some of the approaches given in this StackOverflow: https://stackoverflow.com/questions/15453072/django-serializers-to-json-custom-json-output-format On Sunday, 6 December 2020 at 19:02:31 UTC+2 wwran...@gmail.com wrote: > Hi mates, > > I want to get json serialized the name

Re: Python Django Training

2020-12-07 Thread cmailu06
I am interested Sent from my Galaxy Original message From: Chuck Date: 08/12/2020 02:42 (GMT+03:00) To: django-users@googlegroups.com Subject: Re: Python Django Training I am also interested.Thanks,Chuck

Re: Python Django Training

2020-12-07 Thread hajar Benjat
I am interested Could you add me too On Tue, Dec 8, 2020, 12:42 AM Chuck wrote: > I am also interested. > > Thanks, > Chuck > > On Monday, December 7, 2020, 06:53:12 AM PST, elon musk < > adithyagowli1...@gmail.com> wrote: > > > I am also interested I am also from hyd > > > > Sent from Mail

Re: Python Django Training

2020-12-07 Thread Chuck
I am also interested. Thanks,Chuck On Monday, December 7, 2020, 06:53:12 AM PST, elon musk wrote: #yiv3531898359 #yiv3531898359 -- _filtered {} _filtered {}#yiv3531898359 #yiv3531898359 p.yiv3531898359MsoNormal, #yiv3531898359 li.yiv3531898359MsoNormal, #yiv3531898359 div.yiv353189835

Re: Versioning files or documents in a list

2020-12-07 Thread Ryan Nowakowski
On Tue, Dec 01, 2020 at 04:10:00AM -0800, Amoel moela wrote: > Hello everyone, I'm looking for versioning with files in Django. New upload > file v.1 and after processing the automatic update to v.2. The update from > version 1 to version 2 should change via upload. > > I would bee nicet to get

Re: is a custom model even possible

2020-12-07 Thread Ryan Nowakowski
On Sun, Dec 06, 2020 at 06:00:06PM -0800, Joel T wrote: > I'm new here and have zero clues as to how to create a model with methods > that can be overridden by each instance . i.e Each instance will provide > its own methods that will be called when a certain event is triggered. Hey Joel, An in

Re: DJANGO AUTHENTICATION

2020-12-07 Thread george kwakye addo
I will recommend Django-allauth package On Mon, Dec 7, 2020 at 6:00 AM narendra...@gmail.com < narendrathapa...@gmail.com> wrote: > Which authentication package is best between DJOSER and DJANGO-ALLAUTH? > Can anyone suggest. I'm doing a project using React as frontend and Django > as backend > >

Django Channels understanding

2020-12-07 Thread chinmay...@gmail.com
I created a Consumer class with AsyncJsonWebsocketConsumer and initialized a variable with an array ['test']; such that "test" becomes one of the groups(or broadcast room) In the following code ``` async def connect(self): await self.channel_layer.group_add( group='test',

Re: 'python manage.py startapp polls' doesn't generate urls.py in polls

2020-12-07 Thread Julie Reier
Nevermind. I managed to create the missing file myself. On Monday, December 7, 2020 at 9:48:59 AM UTC-5 Julie Reier wrote: > Hi! I'm following the tutorial at > https://docs.djangoproject.com/en/3.1/intro/tutorial01/. > > When running the 'python manage.py startapp polls' command, the urls.py >

Re: 'python manage.py startapp polls' doesn't generate urls.py in polls

2020-12-07 Thread Mohemed Misfar
Good evening, When u run the code python manage.py startapp, it wont create urls.py. You have to create it in your every apps after run that command. You will only have the urls.py file in your main app which has the settings.py. Thank you. On Mon, 7 Dec 2020 20:18 Julie Reier, wrote: > Hi! I'm

RE: Python Django Training

2020-12-07 Thread elon musk
I am also interested I am also from hyd Sent from Mail for Windows 10 From: tech georgeSent: Monday, December 7, 2020 7:24 PMTo: django-users@googlegroups.comSubject: Re: Python Django Training I want in too On Mon, 7 Dec 2020, 16:43 Hector Berrones, wrote:I am interested. On

'python manage.py startapp polls' doesn't generate urls.py in polls

2020-12-07 Thread Julie Reier
Hi! I'm following the tutorial at https://docs.djangoproject.com/en/3.1/intro/tutorial01/. When running the 'python manage.py startapp polls' command, the urls.py file is generated in the top level directory, but not in the polls directory. I even tried the tutorial a second time, naming the si

Re: Python Django Training

2020-12-07 Thread tech george
I want in too On Mon, 7 Dec 2020, 16:43 Hector Berrones, wrote: > I am interested. > > On Mon, Dec 7, 2020, 2:09 AM narendra thapa > wrote: > >> hello please add me also in training group? >> >> >> On Fri, Feb 21, 2020 at 7:27 PM Bharati Nilam >> wrote: >> >>> Hi, >>> I also from Hyderabad and

Re: Python Django Training

2020-12-07 Thread Hector Berrones
I am interested. On Mon, Dec 7, 2020, 2:09 AM narendra thapa wrote: > hello please add me also in training group? > > > On Fri, Feb 21, 2020 at 7:27 PM Bharati Nilam > wrote: > >> Hi, >> I also from Hyderabad and I'm also interested in the training. please >> tell me how to join? >> >> Regards,

Re: Python Django Training

2020-12-07 Thread Master Stock Mart
I wanna also interested joining training group On Mon., 7 Dec. 2020, 2:09 pm narendra thapa, wrote: > hello please add me also in training group? > > > On Fri, Feb 21, 2020 at 7:27 PM Bharati Nilam > wrote: > >> Hi, >> I also from Hyderabad and I'm also interested in the training. please >> tel

Re: Python Django Training

2020-12-07 Thread 039 Avinash Alanjakar
Hello , I am also interested to join this training. On Mon, 7 Dec 2020, 1:39 pm narendra thapa, wrote: > hello please add me also in training group? > > > On Fri, Feb 21, 2020 at 7:27 PM Bharati Nilam > wrote: > >> Hi, >> I also from Hyderabad and I'm also interested in the training. please >>

Re: DJANGO AUTHENTICATION

2020-12-07 Thread aulb...@gmail.com
Throughout my learning of Django I have used Django-AllAuth, and It's amazing an easy to setup and get started with. I've never heard of Djoser so I can't comment on it. On Monday, December 7, 2020 at 6:00:02 AM UTC-5 narendra...@gmail.com wrote: > Which authentication package is best between

DJANGO AUTHENTICATION

2020-12-07 Thread narendra...@gmail.com
Which authentication package is best between DJOSER and DJANGO-ALLAUTH? Can anyone suggest. I'm doing a project using React as frontend and Django as backend -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and st

Re: is a custom model even possible

2020-12-07 Thread Charles Freeman
Yes it is possible to create a custom model a u have to do is override the default django models On Mon, Dec 7, 2020, 03:57 Joel T <7thog...@gmail.com> wrote: > Hi everyone, > I'm new here and have zero clues as to how to create a model with methods > that can be overridden by each instance . i.e

Re: Python Django Training

2020-12-07 Thread narendra thapa
hello please add me also in training group? On Fri, Feb 21, 2020 at 7:27 PM Bharati Nilam wrote: > Hi, > I also from Hyderabad and I'm also interested in the training. please tell > me how to join? > > Regards, > Bharati > > On Thu, 20 Feb, 2020, 6:19 PM Thiagu Palaniappan, < > thiagarajan@