Reading reviews
To be able to read and list reviews, we need to follow the steps that follow:
- Update the
movies.show
template. - Update the
show
function.
Updating the movies.show template
We will list the reviews in the movies.show
template. In the /movies/templates/movies/show.html
file, add the following, as highlighted in bold:
… <p><b>Price:</b> ${{ template_data.movie.price }} </p> <h2>Reviews</h2> <hr /> <ul class="list-group"> {% for review in template_data.reviews %} <li...