Re: HTTPS on development enviroment

2022-01-05 Thread Gwanghyeon Gim
Can this help? https://stackoverflow.com/a/28933593/1179076 Some browsers might keep you from even entering due to strict security, so try different browers if that's the case i.e firefox. On Saturday, 1 January 2022 at 09:12:10 UTC+9 nassibs...@gmail.com wrote: > I have started using Django an

Re: Employee matching query does not exist

2022-01-05 Thread Gwanghyeon Gim
Two possible scenarios. 1. self.request.POST doesn't have any key named 'employee_id', so self.request.POST.get('employee_id') returns None 2. self.request.POST.get('employee_id') has value like 'Sam', but Employee model doesn't have any object whose name equals to self.request.POST.get('employ

Re: New user

2021-11-02 Thread Gwanghyeon Gim
Hi, here are my recommendations for beginner. Youtube: Corey M Schafer Book: Django for Beginners by W. S. Vincent Good luck. On Tuesday, 2 November 2021 at 06:25:18 UTC+9 lanza...@gmail.com wrote: > Hi, I want to learn Django, so if someone now the best way I appreciate. > -- You received

Got an error creating the test databse - with mysql and docker-compose

2021-05-01 Thread Gwanghyeon Gim
Hi django developers! I have an issue with creating test database. I use mysql for db and docker compose. I have no problem running docker containers with docker-compose, but when I run test it spits this error message. Note that the name of django service is web, and mysql service is db. $ d