Show only remaining books instead of all books

2022-04-30 Thread Arshad Noman
In a book bank made in Django, I want to show only the remaining books instead of all books. This I want to upgrade in the code below def view_books_student(request): books = Book.objects.all() return render(request, "view_books_student.html", {'books':books}) -- You received t

Re: cannot resolve FieldError

2022-05-03 Thread Arshad Noman
django.core.exceptions.FieldError: Cannot resolve keyword 'y' into field. Choices are: author, category, id, isbn, name I am also getting the same error. On Sunday, 18 July 2021 at 19:36:51 UTC+5 frank...@gmail.com wrote: > I am getting this error message: > > raise FieldError("Cannot resol

Web based movie app

2022-05-05 Thread Arshad Noman
I want to make a web-based movie app in Django with data already given in a JSON file. The first page will be movie listings and the second page for details separate from other movie details means each movie details on a separate page. A JSP search bar is also required on top to search movies.

Re: Images

2022-05-08 Thread Arshad Noman
First, you change the picture name and place it in the pictures folder like static or media folder then change the picture name in templates where you want the picture to be displayed

Re: Images

2022-05-10 Thread Arshad Noman
aying the same image as above. > > On Sun, 8 May 2022 at 03:34, Arshad Noman wrote: > >> First, you change the picture name and place it in the pictures folder >> like static or media folder then change the picture name in templates where >> you want the picture to be displ