File size: 312 Bytes
6660737
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
{% extends 'base.html' %}

{% block content %}
{% for person in persons %}
<div class="tile-element">
    <a href="cast/{{ person.id }}">
        <img src="https://image.tmdb.org/t/p/w500{{ person.profile_path }}" alt="{{ person.name}}">
    </a>
    <h2>{{ person.name }}</h2>
</div>
{% endfor %}
{% endblock %}