Skip to content

Tag: django

How to resolve user into the field?

I’m creating a simple To Do app using Django 3.2, and I have stuck in a error which is: FieldError: Cannot resolve keyword ‘user’ into field. Choices are: content, created, email, id, name, user1, user1_id This is models.py: forms.py views.py home.html By far, any data that is added can be a…

How to serialize first photo in album? Django

How to serialize first photo in album if photo connected by using FK with model Gallery. I need first photo for gallery cover in galley list. My models: Anyone have any ideas? May be I need suchlike request Gallery.objects.get(id=id).photos.first() but i not sure is it correct. Answer get returns only one obj…