Error during template rendering

2022-04-09 Thread emmanuel odor
Hello group, I hosted this app on Heroku and i am getting this error. find the attached below. It is working well on my local host... ProgrammingError at /relation "curriculum_standard" does not exist LINE 1: "slug", "curriculum_standard"."description" FROM "curriculu... ^ Request Method:

I need a documentation in Thai language

2022-04-09 Thread frame fF
I'm not good at English in the future. documentation Thai language? -- 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.

Re: Django Foreign key field require dependent on another datetime field

2022-04-09 Thread Antonis Christofides
Hi, you can override the model's save() method . It's something that should be done in the backend. Relying on the front end is a bad idea, because then errors in the front end would lead to inconsistencies in t

Django Foreign key field require dependent on another datetime field

2022-04-09 Thread Mehedi Hasan Tayef
I want to create a *Foreign key *which is *require if another datetime value is greater than any year* (like 2014). How can I create that on Django Models. Or I should do that in frontend. (I will use rest framework) -- You received this message because you are subscribed to the Google Groups

Re: This site can’t be reached error

2022-04-09 Thread John Dollosa
Hi, Can you make sure that you are running the runserver command successfully? What do you see in the logs if ever you run the command python manage.py runserver? You would see some useful error messages if something went wrong when running Django. On Saturday, 9 April 2022 at 05:32:11 UTC+8

Re: NameError:

2022-04-09 Thread tech george
Hello Antonis, Thanks, it worked. Much appreciated. Regards, On Fri, Apr 8, 2022 at 11:10 PM Antonis Christofides < anto...@antonischristofides.com> wrote: > Hi! In the line where the error occurs, Pharmacist has not been defined > yet. Move your Pharmacist model before your Patients model. >