Using the card component
Each movie will be displayed in a card component. In movie/templates/home.html
, replace the for
loop markup and make the following changes in bold:
… <body> <div class="container"> <form action=""> … </form> <p>Searching for: {{ searchTerm }}</p> <div class="row row-cols-1 row-cols-md-3 g-4"> {% for movie in movies %} <div v-for="movie in movies" class="col"> <div class="card"> <...