Implementing links to individual movie pages
Now that we have a movie's detail page, we will next implement the movie links to navigate to those detail pages from /movie/templates/home.html
:
- We simply wrap the movie title in
<a href…>
, as shown here in bold:… {% for movie in movies %} <div v-for="movie in movies" class="col"> <div class="card"> <img class="card-img-top" src="{{ movie.image.url }}" /> <div class="card-body"> <a href="{% url 'detail' movie.id %}"> ...