10 lines
202 B
HTML
10 lines
202 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block header %}
|
|
<h2>{% block title%}Watched Movies{% endblock title %}</h2>
|
|
{% endblock header %}
|
|
|
|
{% block content %}
|
|
{% include('_movies.html') %}
|
|
{% endblock content %}
|