Re: FileNotFoundError at /login/

2022-03-24 Thread 'Delvin Alexander' via Django users
I did just that but now this error popped up on my visual code. Will i have to go into my setting.py file and create a new app for my models.py? *Exception has occurred: ImproperlyConfigured* *Requested setting INSTALLED_APPS, but settings are not configured. You must either define the

Re: Supertypes, subtypes and authentication

2022-03-24 Thread Gabriel Araya Garcia
If you had implemented the authentication in your app, then I think, it would be more easy to develop other things more complex. Remember in Django you can give permission at users group Gabriel Araya Garcia GMI - Desarrollo de Sistemas Informáticos El mar, 22 mar 2022 a las 10:12,

Re: Supertypes, subtypes and authentication

2022-03-24 Thread Sebastian Jung
Helli Anne, Authirization is automatical implemented in django. You need a login page and ggf. A Registration page. https://ordinarycoders.com/blog/article/django-user-register-login-logout This has nothing to do with a relationship from article to a User or a node. Regards Regards

Re: tutorial 1 problems from djangoproject website - not working, do not exactly understand

2022-03-24 Thread Samapika Nayak
create a virtual env, install django On Tuesday, March 22, 2022 at 6:43:02 PM UTC+5:30 paul.ka...@gmail.com wrote: > root@videotron:~ # django-admin startproject mysite > root@videotron:~ # python manage.py runserver > python: can't open file 'manage.py': [Errno 2] No such file or directory >

Re: tutorial 1 problems from djangoproject website - not working, do not exactly understand

2022-03-24 Thread Shah Tech
you must first your current directory to your project directory mysite: in window type: cd mysite and then try python manage.py runserver On Thursday, March 24, 2022 at 6:51:53 PM UTC+5 Kasper Laudrup wrote: > On 24/03/2022 08.05, harsh jain wrote: > > Still facing issue ? > > This course will

Re: FileNotFoundError at /login/

2022-03-24 Thread Shah Tech
1. According to your model, you meant the models.py file and default.jpg are in same directory. => But according to the error it smells that they are not same directory, so try to point to the exact relative path of the image. On Thursday, March 24, 2022 at 10:10:13 AM UTC+5 Delvin Alexander

Re: tutorial 1 problems from djangoproject website - not working, do not exactly understand

2022-03-24 Thread Kasper Laudrup
On 24/03/2022 08.05, harsh jain wrote: Still facing issue ? This course will help you - Advanced web development course online Please fuck off with your spam. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group

Re: tutorial 1 problems from djangoproject website - not working, do not exactly understand

2022-03-24 Thread harsh jain
Still facing issue ? This course will help you - Advanced web development course online On Tuesday, 22 March 2022 at 18:43:02 UTC+5:30 paul.ka...@gmail.com wrote: > root@videotron:~ # django-admin startproject mysite >

Re: Supertypes, subtypes and authentication

2022-03-24 Thread 'AnneVerm' via Django users
Hello, Thanks for your reply. I have a Postgres database, node, organization, person and thing are modelled like this: CREATE TABLE public.ntw_node ( id integer NOT NULL DEFAULT nextval('ntw_node_id_seq'::regclass), CONSTRAINT ntw_node_pkey PRIMARY KEY (id) ) CREATE TABLE