Custom User models

2023-11-27 Thread Okkert Joubert
Good morning all, I made a custom user model for a school, it is currently working with djoser authentication, now what I want to add is for the school to add users, so my School model is a foreignkey in SchoolUser is this possible firstly and secondly can I add the djoser authentication to the

Re: Project together

2023-11-27 Thread okot emmanuel
add me +256779815657 On Mon, Nov 27, 2023 at 12:48 AM usman ashir wrote: > yes pls send us the group link. or pls 2348166997172.add my contact > > On Sun, Nov 26, 2023, 9:38 PM Jay Senkow wrote: > >> interested. >> >> Sent from my iPhone >> >> On Nov 26, 2023, at 2:46 PM, ekong, emmanuel >>

Re: Project together

2023-11-27 Thread Selmane
im interested +213556434461 On Sun, Nov 26, 2023 at 10:48 PM usman ashir wrote: > yes pls send us the group link. or pls 2348166997172.add my contact > > On Sun, Nov 26, 2023, 9:38 PM Jay Senkow wrote: > >> interested. >> >> Sent from my iPhone >> >> On Nov 26, 2023, at 2:46 PM, ekong, emmanuel

Re: Project together

2023-11-27 Thread narcizo norzagaray
Interested, add me El El jue, 23 de noviembre de 2023 a la(s) 11:14, Youssef Bachraoui < bachraouiyouss...@gmail.com> escribió: > 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 subsc

Re: Custom User models

2023-11-27 Thread Clive Bruton
I am taking it that there is more than one "school"? If so, surely it's is just a many-to-many relationship. On 27 Nov 2023, at 09:33, Okkert Joubert wrote: Good morning all, I made a custom user model for a school, it is currently working with djoser authentication, now what I want to add

Re: Project together

2023-11-27 Thread Aminu Auwal
I am interested add me +2438062282242 On Mon, Nov 27, 2023 at 4:10 PM okot emmanuel wrote: > add me +256779815657 > > > > On Mon, Nov 27, 2023 at 12:48 AM usman ashir < > www.usmanashirmu...@gmail.com> wrote: > >> yes pls send us the group link. or pls 2348166997172.add my contact >> >> On Sun,

Performance profiling Django Channels async consumers

2023-11-27 Thread Filbert
We are heavily using Django Channels async consumers and haven't found a way instrument for performance profiling. We've tried NewRelic, but per their developers say they don't have support for Django Channels. We run certain websocket connections through Gunicorn, Uvicorn, Channels-Async and

Re: Custom User models

2023-11-27 Thread Ahmed Iftikhar
# models.py from django.contrib.auth.models import AbstractUser from django.db import models class School(models.Model): # Your School model fields class SchoolUser(AbstractUser): school = models.ForeignKey(School, on_delete=models.CASCADE) # Add other custom fields as needed

Connecting Django with Redis

2023-11-27 Thread lone...@gmail.com
Hello all, I wanted to verify the connection between my django and Redis was working and I found this article: https://studygyaan.com/django/connect-django-with-redis I have already implemented what it asked and I got good results. I am kind of curious though, can I use the instructions w

htmx progress indicator problem - might be caching

2023-11-27 Thread Mike Dewhirst
I'm trying but failing to get htmx to deliver a progress indication. The task is creating records in the database for each item in a list provided by the logged in user. The view with the submit button collects the list and does the database insertion. I added a "progress" property to the Use