/Book-Review-System

Book Review System

Primary LanguagePython

Book-Review-System

This is a book review application. It lets the user add reviews on the book they have read and rate them. The application also involves the functionality of adding and deleting their entries i.e reviews for a particular book.

This application is created using the django framework.

This is how basic view looks like : basic view

Form to add review:

adding review

List of books reviewed:

added reviews

Deleting reviews:

deleting reviews

Login Page:

login page

Register Page:

register page

Installation Steps:

  1. Add "book_review" to your INSTALLED_APPS setting in mysite/settings.py like this::

    INSTALLED_APPS = [ ... 'book_review.apps.BookReviewConfig', ]

  2. Include the book_review URLconf in your project mysite/urls.py like this::

    path('book_review/', include('book_review.urls')),

  3. Run python manage.py migrate to create the book_review models.

  4. Start the development server python manage.py runserver and visit http://127.0.0.1:8000/admin/ to create a user book review (you'll need the Admin app enabled).

  5. Visit http://127.0.0.1:8000/book_review to add a book review.