fenton1000 / mf-portfolio-five-big-boring-shop

0 stars 1 forks source link

USER STORY: Rate a Product #23

Closed fenton1000 closed 1 year ago

fenton1000 commented 1 year ago

As a Registered User I can rate products so that I can assist my fellow customers and benefit when they do likewise.

fenton1000 commented 1 year ago

Acceptance Criteria:

  1. On the product detail page a registered user can rate a product from 1 to 5.
fenton1000 commented 1 year ago

Tasks:

  1. Add a number of people who have rated field to the product model.
  2. Create a rating model in the profile app with user, product and rating fields.
  3. In the product detail template add html for displaying the rating and add a form for rating a product if the user is authenticated.
  4. Add a rate product function in the profile views.py file to handle the form. This function will add the rating to the rating model and update the product rating details in the product model..
  5. Add a url to the profiles urls to call the rate product function.