Re: very urgent

2024-05-13 Thread Agar Joshua
whats the folder structure for your templates? On Sun, May 12, 2024 at 6:03 PM Yann wrote: > Please does somoene can help me with this: > [image: Capture d'écran 2024-05-12 091648.png] > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To

Re: very urgent

2024-05-13 Thread Babatunde Mabinuori
Good day, The error occurs because "usagers/login.html" doesn't exist in your template file or wasn't properly referenced. Kindly check the filename properly to see if it exist, the filename is correctly spelt and well referenced. On Sunday, May 12, 2024 at 4:03:41 PM UTC+1 Yann wrote: > Please

Serving static files with whitenoise

2024-05-13 Thread Richlue King
Hi, I'm trying to upload my project to render.com and I need to set up the static files with whitenoise. However, when I run collectstatic, I keep encountering this error: Post-processing 'assets\css\bootstrap.min.css' failed! raise ValueError( ValueError: The file 'assets/css/bootstrap.min.css

Re: Account verification

2024-05-13 Thread Anthony Flury
Your register view is setting is_active to True - regardless of email verification. Remember that the email confirmation will happen asynchronously to the registration. What I do is have a separate table that records that a user needs to complete the verification process. So registration sends th