Pagination has been added so that the amount of items on each page is a reasonable amount.
39 lines
1.1 KiB
HTML
39 lines
1.1 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{% block nav %}
|
|
<nav class="navbar navbar-expand">
|
|
<ul class="navbar-nav mr-auto"></ul>
|
|
<form class="form-inline" method="get" action="">
|
|
<div class="form-group mx-2">
|
|
<input type="text" class="form-control" minlength="3" name="q">
|
|
</div>
|
|
<button type="submit" class="btn btn-primary">Search</button>
|
|
</form>
|
|
</nav>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div style="text-align: center">
|
|
{% include "pagination.html" %}
|
|
</div>
|
|
<div class="container col-7">
|
|
{% if movies != [] %}
|
|
<div class="row justify-content-start">
|
|
{% include "movies/moviesList.html" %}
|
|
</div>
|
|
{% else %}
|
|
<h1>No results.</h1>
|
|
{% endif %}
|
|
</div>
|
|
<div style="text-align: center">
|
|
{% include "pagination.html" %}
|
|
</div>
|
|
{% endblock %}
|
|
|
|
{% block footer_content %}
|
|
<div class="container">
|
|
<img src="/static/svg/tmdb.svg" alt="" style="height: 40px;">
|
|
<p>This product uses the TMDb API but is not endorsed or certified by TMDb.</p>
|
|
</div>
|
|
{% endblock footer_content %}
|