Do you have any other attributes set in the modeladmin? Something is
telling the ORM to do a query on the "shop" field, and that field doesn't
exist in the DB and it's not defined in the model. Possibly a filter field
in the ModelAdmin class? A full back trace might help illuminate where you
have this set.

On Wed, Jul 7, 2021, 8:13 AM Samin Serge <gloireadieu...@gmail.com> wrote:

> in admin.py put this code to see.
> @admin.site.register (shop)
>
>
> Le mer. 7 juil. 2021 à 00:16, Stathis Angelou <stakath...@gmail.com> a
> écrit :
>
>> Good evening all, i have created a new app and added a model. Added the
>> app under installed apps, and run python manage.py makemigrations and
>> migrate and everything worked as expected.
>>
>> But i believe there is an issue with the admin.py file
>>
>> from django.contrib import admin
>>
>> # Register your models here.
>> from django.contrib.gis.admin import OSMGeoAdmin
>> from .models import Shop
>>
>> @admin.register(Shop)
>> class ShopAdmin(OSMGeoAdmin):
>>     list_display = ('name', 'location')
>>
>> Error message:
>> "ProgrammingError at /admin/shops/shop/relation "shops_shop" does not
>> exist LINE 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 receiving emails from it, send an
>> email to django-users+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/60ca7670-d423-49e1-9d4a-ea978e193dd4n%40googlegroups.com
>> <https://groups.google.com/d/msgid/django-users/60ca7670-d423-49e1-9d4a-ea978e193dd4n%40googlegroups.com?utm_medium=email&utm_source=footer>
>> .
>>
> --
> 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.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAKRM%3DdFUzUj37o%3DxgqfQZU-Dj9FeH7CTZCUbCpRdkZ-nHAM-oQ%40mail.gmail.com
> <https://groups.google.com/d/msgid/django-users/CAKRM%3DdFUzUj37o%3DxgqfQZU-Dj9FeH7CTZCUbCpRdkZ-nHAM-oQ%40mail.gmail.com?utm_medium=email&utm_source=footer>
> .
>

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAF-Y%3De4xaDiRwUxK7%2BsJtQi%3DXk4E8pE-8igSx2iNZUvhxpmd%2BA%40mail.gmail.com.

Reply via email to