movies-app / templates /cast.html
tmzh
initial commit
6660737
raw
history blame contribute delete
No virus
312 Bytes
{% 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 %}