Implementing a search movie functionality
Let’s finalize this chapter by implementing a search movie functionality. We will need to, first, update the movies.index
template, and second, update the index
function.
Updating the movies.index template
In /movies/templates/movies/index.html
, add the following in bold:
… <div class="col mx-auto mb-3"> <h2>List of Movies</h2> <hr /> <p class="card-text"> <form method="GET"> <div class="row"> <div class="...