{% extends 'bootstrap/base.html' %} {% block styles %} {{ super() }} {% endblock %} {% block title %}My Top 10 Books{% endblock %} {% block content %}

My Top Books List

{% for movie in movies %}

{{movie.ranking}}

{{movie.title}} {{ movie.year }}

{{ movie.review }}

{{ movie.description }}

Update Delete
{% endfor %}
Add Book
{% endblock %}