How can I become an execpt in Django

On Sat, Oct 14, 2023, 2:05 PM Adesewa Lola <adesewalola2...@gmail.com>
wrote:

> i have an issues with my django site
>
> All i want to do is to add a mail so whenever the user click the sign up
> button the user should receive a mail like thanks for signing up
>
> but mine is not working
>
> On Fri, Oct 13, 2023 at 3:14 PM Mithilesh Rawani <bansloi....@gmail.com>
> wrote:
>
>> 404 screenshot share this group
>>
>> On Fri, 13 Oct 2023, 7:26 pm Onjomba Felix, <onjombafel...@gmail.com>
>> wrote:
>>
>>>
>>> Look at how you configure your static files and also the deburg mode of
>>> your system
>>>
>>> Settings.py
>>>
>>> DEBUG = True
>>> STATIC_URL = '/static/'
>>> STATICFILES_DIRS = [os.path.join(BASE_DIR, "static")]
>>>
>>> main urls.py
>>>
>>> from django.conf import settings
>>> from django.conf.urls.static import static
>>>
>>> urlpatterns = [
>>>     # ... your other URL patterns ...
>>> ]
>>>
>>> if settings.DEBUG:
>>>     urlpatterns += static(settings.STATIC_URL,
>>> document_root=settings.STATIC_ROOT)
>>>
>>>
>>> Then Run
>>>  python manage.py collectstatic
>>>
>>>
>>>
>>> On Fri, Oct 13, 2023, 4:14 PM Alvaro Nascimento <alvaro.nr...@gmail.com>
>>> wrote:
>>>
>>>> i have an issue with my Django site,
>>>>
>>>> on loading staticfiles, it does 404 error.
>>>>
>>>> but in production everything works fine.
>>>>
>>>> --
>>>> 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-users+unsubscr...@googlegroups.com.
>>>> To view this discussion on the web visit
>>>> https://groups.google.com/d/msgid/django-users/f6e31790-20fc-40db-b22a-bc86a3d9738an%40googlegroups.com
>>>> <https://groups.google.com/d/msgid/django-users/f6e31790-20fc-40db-b22a-bc86a3d9738an%40googlegroups.com?utm_medium=email&utm_source=footer>
>>>> .
>>>>
>>> --
>>> 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-users+unsubscr...@googlegroups.com.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/django-users/CAJU16zf0Pp7o7DAD-sns7fFmo-R4QRy6wqDM_6Tnsu4sd8mdVg%40mail.gmail.com
>>> <https://groups.google.com/d/msgid/django-users/CAJU16zf0Pp7o7DAD-sns7fFmo-R4QRy6wqDM_6Tnsu4sd8mdVg%40mail.gmail.com?utm_medium=email&utm_source=footer>
>>> .
>>>
>> --
>> 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-users+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/CAEQ0vnCKW2nodQnZ5DMtykkZUM%3De_9aCy5dExwQBLRW2QYTmOA%40mail.gmail.com
>> <https://groups.google.com/d/msgid/django-users/CAEQ0vnCKW2nodQnZ5DMtykkZUM%3De_9aCy5dExwQBLRW2QYTmOA%40mail.gmail.com?utm_medium=email&utm_source=footer>
>> .
>>
> --
> 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-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CA%2BPuKxpSdk-CWZP3jG-GxGM6%2BR4qg81OQvACRyX8E4OTJyXooA%40mail.gmail.com
> <https://groups.google.com/d/msgid/django-users/CA%2BPuKxpSdk-CWZP3jG-GxGM6%2BR4qg81OQvACRyX8E4OTJyXooA%40mail.gmail.com?utm_medium=email&utm_source=footer>
> .
>

-- 
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-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAO8%2Bh4Th6z9cPDcZuFfDoS5L3cFBiwAxUsHeBXzGzwFC5gGXGQ%40mail.gmail.com.

Reply via email to