Re: location based web app with django and geodjango

2021-06-20 Thread Stathis Angelou
Good evening all, following my application development, I have reached to the stage where I am about to add some data using data migrations. I did download some data from OSM (saved as json), added a load data function but when i run the migrate command I get a keyerror in my migration files:

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, 15 June

Re: location based web app with django and geodjango

2021-06-15 Thread Nikeet NA
Your app is not registered in settings file as stated by Aritra. On Tuesday, 15 June 2021 at 14:22:45 UTC+5:30 arit...@gmail.com wrote: > Hello, > Register your app in setting.py-> INSTALLED_APPS like > 'appname.apps.appnameConfig' from your apps.py. Alternatively, you can > write 'app_name' i

Re: location based web app with django and geodjango

2021-06-15 Thread Aritra Ray
Hello, Register your app in setting.py-> INSTALLED_APPS like 'appname.apps.appnameConfig' from your apps.py. Alternatively, you can write 'app_name' instead of the whole sentence. Regards, Aritra. On Tue, 15 Jun 2021 at 05:46, Stathis Angelou wrote: > good evening all, > > I have started buildi

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 Tuesday, 15

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) > > On Tuesday, 15

Re: location based web app with django and geodjango

2021-06-14 Thread Nikeet NA
Replace admin.site.register(Report) with this @admin.register(Report) On Tuesday, 15 June 2021 at 05:46:46 UTC+5:30 staka...@gmail.com wrote: > 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