Unpaid Internship

2023-04-24 Thread John Diginee
Dear Sir/Ma'am, I hope this message finds you well. I am a full-stack software engineering student at Holberton School, a Silicon Valley-based software engineering institution. I am reaching out to express my interest in an unpaid backend intern or junior role at your esteemed company. My prim

Re: Unpaid Internship

2023-04-24 Thread Paul Kudla ( SCOM )
Pls contact me directly at p...@scom.ca please have an idea thanks - paul Paul Kudla SCOM.CA Internet Services Inc.004-1009 Byron Street South Whitby, Ontario - Canada L1N 4S3Toronto 416.642.7266 Main 1.866.411.7266 Fax 1.888.892.7266 On Apr 24, 20

Re: User not Authenticating.

2023-04-24 Thread Lawal Tobiloba Samuel
code here: def loginPage(request): if request.method == "POST": username = request.POST.get("username") password = request.POST.get("password") userLogin = authenticate(username=username, password=password) if userLogin is not None: login(request, us

Machine learning mailing group

2023-04-24 Thread sunday honesty
Hi Django Devs, Please can anyone recommend me a Data Science mailing group like this one? Sincerely, -- 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 django-us

Re: User not Authenticating.

2023-04-24 Thread Opeoluwa Fatunmbi
Let me see your login.html On Mon, 24 Apr 2023 at 17:28, Lawal Tobiloba Samuel < oluwasheun9...@gmail.com> wrote: > code here: > > def loginPage(request): > if request.method == "POST": > username = request.POST.get("username") > password = request.POST.get("password") >

Re: User not Authenticating.

2023-04-24 Thread oluwafemi damilola
userLogin = authenticate(request, username=username, password=password) On Mon, 24 Apr 2023 at 17:29, Opeoluwa Fatunmbi wrote: > > Let me see your login.html > > > > > > > On Mon, 24 Apr 2023 at 17:28, Lawal Tobiloba Samuel < > oluwasheun9...@gmail.com> wrote: > >> code here: >> >> def loginPage

Re: User not Authenticating.

2023-04-24 Thread Ruby Shell
`authenticate` requires a positional argument (request) try userLogin = authenticate(request, username=username, password=password) On Monday, April 24, 2023 at 5:51:45 PM UTC+1 oluwafemi damilola wrote: > userLogin = authenticate(request, username=username, password=password) > > On Mon, 24 Apr

Re: Unpaid Internship

2023-04-24 Thread Ayomide Francis- Akinlolu
Can I also direct message you? I'm very interested in an internship. I'm from Nigeria. On Monday, April 24, 2023 at 8:58:05 AM UTC-7 Paul Kudla ( SCOM ) wrote: > Pls contact me directly at pa...@scom.ca please have an idea > > > thanks - paul > > Paul Kudla > > > SCOM.CA Internet Services Inc. >

Re: User not Authenticating.

2023-04-24 Thread Lawal Tobiloba Samuel
I later got what I did wrong... I wanted to retrieve the user information from the form (request.POST.get("username")), but in d form there was no input tag that is named username nor password... So when the view function request those informations, it was returning an empty string that was why i

Runtime decision on language support

2023-04-24 Thread Shawn Thomas
Hi, I've searched online for an answer to this but couldn't find anything. I have a multi-tenant Django app that supports multiple languages, both in code (django.po/django.mo) and for customer data. However, not every customer wants to translate their data into every language we support (thin

Re: Runtime decision on language support

2023-04-24 Thread ASAMOAH EMMANUEL
> > > To achieve this, you can create a custom middleware that inherits from > `LocaleMiddleware`. In your custom middleware, you can override the > `process_request` method to check for the tenant's allowed languages and > set the request's language accordingly. > > 1. Create a new model field for