Django Websockets / Several Users on the Website

2017-10-11 Thread 'matrix1900' via Django users
Hi together, I try to get started with Django Channels. I have actually two questions: 1. I use web sockets with channels. I want to have for each frontend user which opens the website his own websocket channel without groups. I am not sure how does it works when several Users opens the websit

Re: How do I request a new feature in 1.11.x?

2017-10-11 Thread Tim Graham
No, Django 1.11.x won't receive new features. The supported versions policy is the same for that release series as for other releases. https://docs.djangoproject.com/en/dev/internals/release-process/#supported-versions On Wednesday, October 11, 2017 at 12:01:06 AM UTC-4, Chris Beck wrote: > > Th

JSON editor for admin

2017-10-11 Thread Dave Ekhaus
Hi All Can anyone recommend a working JSON editor that can be added to a Django 1.11.x admin ? For what its worth - the field I want to use the JSON editor on is a django.contrib.postgres.fields JSONField. Thanks Dave -- You received this message because you are subscribed to the Google

Re: How do I request a new feature in 1.11.x?

2017-10-11 Thread Chris Beck
that's what I expected but 1.11.1 and 1.11.2 each added a minor feature On 11 October 2017 at 10:03, Tim Graham wrote: > No, Django 1.11.x won't receive new features. The supported versions > policy is the same for that release series as for other releases. > > https://docs.djangoproject.com/en/

Filter data in related_name loop

2017-10-11 Thread tango ward
Hi guys, I've been scratching my head on this one. I want to know if it's possible to filter the data of models class with related_name in a foor loop? Basically, I want to show the members info associated to a Team. models.py class Team_Region(models.Model): name = models.CharField(max_lengt

Django Channels: Comparison to ipyparallel

2017-10-11 Thread Виталик Абеткин
Hi, Django folks, I wonder how Django channels would compare to using https://github.com/ipython/ipyparallel for delayed synchronous jobs. It uses zeromq for message passing. Can it possibly be the right solution? What do you think about the performance? -- You received this message because y