Re: why is the static file not loading.i need solution

2018-10-20 Thread Gabriel Stone
Also in your href try using a forward slash not a back slash to make references On Sat, 20 Oct 2018 at 5:45 PM, Siddharth Tamang < tamangsiddhart...@gmail.com> wrote: > Have you defined your static files entry in settings.py? > > On Sat, Oct 20, 2018 at 9:05 PM Obodoma Uzondu Vincent < >

Re: Hello From Nigeria

2019-03-21 Thread Gabriel Stone
hello i am from Ghana am i qualified to join? On Thu, Mar 21, 2019 at 1:54 PM Asiwaju Lasisi Prodigy Olatunbosun < bosun...@gmail.com> wrote: > Yes 08024273381 > > On Wednesday, 13 March 2019 12:44:16 UTC+1, Thaddeaus Iorbee wrote: >> >> Yes please. 0814390 >> >> On Monday, March 11, 2019,

Re: User matching query does not exist.

2019-09-07 Thread Gabriel Stone
In your user creation form did you add an email field?if you did then only can you query users by their email On Sat, Sep 7, 2019 at 22:36 göktürk sığırtmaç wrote: > I'm trying get user according to email. > > user = User.objects.get(email=email) > > > if user is none, i will show message. I

Re: User matching query does not exist.

2019-09-07 Thread Gabriel Stone
Tamam all the best On Sat, Sep 7, 2019 at 23:12 göktürk sığırtmaç wrote: > I solved it!!! using ObjectDoesNotExist via javatpoint. ( > https://www.javatpoint.com/django-exceptions) > > try: > user = User.objects.get(email=email) > except ObjectDoesNotExist: > user = None; > > > 7 Eylül