Re: ProgrammingError - relationship does not exist

2021-07-21 Thread Stathis Angelou
good evening all, I was wondering whether any of you had the chance to review my code and identify what the issue seems to be Thank you once again Stathis On Tuesday, July 13, 2021 at 11:56:27 AM UTC+1 Stathis Angelou wrote: > Good morning all and thank you for your time in this, as sugges

Re: ProgrammingError - relationship does not exist

2021-07-13 Thread Stathis Angelou
://github.com/sangel667/Nearby_Shops_Project Thank you once more very much Stathis On Thursday, July 8, 2021 at 8:01:32 AM UTC+1 sutharl...@gmail.com wrote: > you can try this > https://stackoverflow.com/questions/26283159/django-1-7-migrations-how-do-i-clear-all-migrations-and-start-over-from

Re: ProgrammingError - relationship does not exist

2021-07-07 Thread Stathis Angelou
for you i can share my github repository: https://github.com/sangel667/Nearby_Shops_Project Once again thank oyu very much for your time Stathis On Wednesday, July 7, 2021 at 5:07:50 PM UTC+1 jacobgr...@gmail.com wrote: > Oh actually, it looks like the table doesn't exist. I misread the

Re: ProgrammingError - relationship does not exist

2021-07-07 Thread Stathis Angelou
] 0010_alter_group_name_max_length [X] 0011_update_proxy_permissions [X] 0012_alter_user_first_name_max_length contenttypes [X] 0001_initial [X] 0002_remove_content_type_name sessions [X] 0001_initial shops [X] 0001_initial [X] 0002_auto_20210630_1341 does this give you a better idea? Thank you very much again Stathis

ProgrammingError - relationship does not exist

2021-07-06 Thread Stathis Angelou
1: SELECT COUNT(*) AS "__count" FROM "shops_shop" " Any advice or hint would be really appreciated Kind Regards Stathis -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiv

Re: location based web app with django and geodjango

2021-06-20 Thread Stathis Angelou
: File "/home/qgislinuxadmin/nearbyshops/shops/migrations/0002_auto_20210618_2102.py", line 18, in load_data for obj in objects['elements']: KeyError: 'elements' which would mean that the key in not in a dictionary. Any help or advice would be appreciated Kind Regards Stathis

Re: location based web app with django and geodjango

2021-06-15 Thread Stathis Angelou
Good morning Both and thank you very much for your help, Yes that worked!!? Thank you again, off for the next step!! Kind Regards Stathis On Tuesday, June 15, 2021 at 10:05:16 AM UTC+1 Nikeet NA wrote: > Your app is not registered in settings file as stated by Aritra. > > On Tuesday

Re: location based web app with django and geodjango

2021-06-15 Thread Stathis Angelou
Good morning Nikeet and thank you for your response, i am afraid i am still not getting the web app yet on my admin page Kind Regards Stathis On Tuesday, June 15, 2021 at 1:27:03 AM UTC+1 Nikeet NA wrote: > Replace admin.site.register(Report) with this @admin.register(Report) > > On Tu

Re: location based web app with django and geodjango

2021-06-15 Thread Stathis Angelou
Good morning Nikeet and thank you for your response, i am afraid i am still not getting the web app yet on my admin page Kind Regards Stathis Στις Τρί, 15 Ιουν 2021 στις 1:27 π.μ., ο/η Nikeet NA έγραψε: > > Replace admin.site.register(Report) with this @admin.register(Report) > >

location based web app with django and geodjango

2021-06-14 Thread Stathis Angelou
good evening all, I have started building a webapp using python, django and linux, but i'm afraid the app does not appear under admin tab in 127.0.0.1:8000/admin I am sure I am missing something, attached is my code Thank you in advance Stathis -- You received this message because you

Testing in a project with multiple databases

2011-02-07 Thread Stathis
Hello everyone, I have set up a project with multiple database connections (default and legacy). I use models for the default database, but the legacy db is not managed by models. I issue raw sql to query the legacy database. Django-nose and south are used. I am facing multiple problems: -