Re: Student Club Management Web App: Seeking Collaboration and Advice from Experts

2024-03-06 Thread Manjusha
I am interested to join Phone number: 91+7083508673 On Wed, 6 Mar 2024, 19:26 Najeeb Mansur Sayaya, wrote: > Please add me 07038571709 > > On Sat, Mar 2, 2024, 4:58 PM SOLTAN NOURELDIEN >> >> Hello, I am currently working on my Django Project for a specific course >> at my university. I have

Re: Need a partner

2023-11-25 Thread Manjusha
I am interested On Sun, 26 Nov 2023, 02:32 Joshua Olatunji, wrote: > Find many partners Willing and ready to collaborate here: > https://chat.whatsapp.com/IgJcwnZR9sr1Jatc5jnSx9 > > On Sat, Nov 25, 2023, 9:57 PM Adesewa Lola > wrote: > >> I am interested. >> >> On Fri, Nov 24, 2023 at

Re: How to allow user to delete their own profile after login with their default id.

2022-12-27 Thread Manjusha
need to create database for user and need to add id column in database. On Tuesday, December 27, 2022 at 11:32:11 PM UTC+5:30 Manjusha wrote: > User object doesn't have attribute id so it will not work, I have checked > now and you can refer this documentation > <https://docs.djang

Re: How to allow user to delete their own profile after login with their default id.

2022-12-27 Thread Manjusha
User object doesn't have attribute id so it will not work, I have checked now and you can refer this documentation , so you will get clear idea. On Monday, December 26, 2022 at 8:10:35 PM UTC+5:30 rajm1...@gmail.com wrote: > Hey, >

Re: How to allow user to delete their own profile after login with their default id.

2022-12-25 Thread Manjusha
Thanks, both techniques are working now i.e 1)Replacing User.delete(u.id) with u.delete() and in 2) user is no getting authenticated with email, it is authenticated with only username and password with authenticate function.

Re: How to allow user to delete their own profile after login with their default id.

2022-12-24 Thread Manjusha
def delete_account(request): if request.method == "POST": email = request.POST.get('email') password = request.POST.get('pswd1') u = User.objects.filter(email=email).first() print(u) User.delete(u.id) messages.success(request,"Account

Re: How to allow user to delete their own profile after login with their default id.

2022-12-24 Thread Manjusha
want to know how to allow user to delete the created profile with default id of the user. On Saturday, December 24, 2022 at 8:52:32 PM UTC+5:30 Manjusha wrote: > that incorrect picture > > > On Saturday, December 24, 2022 at 8:51:56 PM UTC+5:30 Manjusha wrote: > >> act

Re: How to allow user to delete their own profile after login with their default id.

2022-12-24 Thread Manjusha
that incorrect picture On Saturday, December 24, 2022 at 8:51:56 PM UTC+5:30 Manjusha wrote: > actually the code I have written it is for function based view but it not > working that's why I am trying to do with generic editing views sorry for > that > > On Saturday, Decembe

Re: How to allow user to delete their own profile after login with their default id.

2022-12-24 Thread Manjusha
ike it's > supposed to be for a function based view. Which style do you want to use? > > > On December 24, 2022 8:13:09 AM CST, Manjusha > wrote: >> >> Hi, I have created authentication system in Django. Anyone just tell me >> how to allow user to delete

Re: Arrayfield constraint issue in 4.1

2022-12-13 Thread Manjusha
I am not understanding what you are telling. On Tuesday, December 13, 2022 at 3:58:19 PM UTC+5:30 rahul@gmail.com wrote: > Last time i told u give me excess ur laptop > > On Tue, Dec 13, 2022, 15:02 Manjusha wrote: > >> Hey anyone reply me. > > >> >> O

Re: Branches.desktop file with django

2022-12-13 Thread Manjusha
the github link which is have sent what is that? And how that branches.desktop file is created I don't know. Will you clarify that? On Tuesday, December 13, 2022 at 3:52:01 PM UTC+5:30 bhuvn...@gmail.com wrote: > hi Manjusha, > could you please clarify what is your doubt exactly? >

Branches.desktop file with django

2022-12-13 Thread Manjusha
I have a doubt about the following link : https://github.com/django/django/branches I want to ask you about this branches.desktop file. And I have attached a screenshot -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this

Re: Arrayfield constraint issue in 4.1

2022-12-13 Thread Manjusha
Hey anyone reply me. On Monday, December 12, 2022 at 10:51:00 PM UTC+5:30 Manjusha wrote: > Yes,I got it !! > I have a doubt about the following link : > https://github.com/django/django/branches > > I want to ask you about this branches.desktop file. > And I have att

Re: Permission for admin to add patient

2022-12-12 Thread Manjusha
I'm junior may it will work!! On Tuesday, December 13, 2022 at 12:31:17 PM UTC+5:30 Manjusha wrote: > Hi, need to register the model.py file in admin.py file and then make > migrations as like mention in following documentation. > https://docs.djangoproject.com/en/4.1/intro/t

Re: Permission for admin to add patient

2022-12-12 Thread Manjusha
Hi, need to register the model.py file in admin.py file and then make migrations as like mention in following documentation. https://docs.djangoproject.com/en/4.1/intro/tutorial02/ On Monday, December 12, 2022 at 4:49:26 AM UTC+5:30 curtis...@gmail.com wrote: > Hello to all. Please, I would

Re: Arrayfield constraint issue in 4.1

2022-12-12 Thread Manjusha
I think default should be assigned like this default=[ ] or default= list() But I'm junior so may I don't know well On Mon, 12 Dec 2022, 03:13 James Gillard, wrote: > The callable list is indeed assigned as the default for the ArrayField, as > documented here: >

Re: Arrayfield constraint issue in 4.1

2022-12-11 Thread Manjusha
Hello Sir, I need to understand the form.py file because , what is the only list you have assigned as default in arrayfield, is it the method list() ? On Sat, Dec 10, 2022 at 10:00 PM James Gillard wrote: > Thanks for the feedback. I opened a ticket and it was indeed confirmed as > a bug: