summaryrefslogtreecommitdiff
path: root/templates/director.html
blob: 3257ee925a3a656592f86f4edac6652f0131885f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{% extends "base.html" %}

{% block title %}{{ director_name }} · Lumière{% endblock %}

{% block content %}
  <section class="page-heading">
    <p class="eyebrow">Director</p>
    <h1>{{ director_name }}</h1>
  </section>

  <section class="director-summary" aria-label="Director summary">
    <article class="summary-card">
      <span class="summary-label">Films logged</span>
      <strong>{{ director_summary.total_films_logged }}</strong>
    </article>
    <article class="summary-card">
      <span class="summary-label">Average stars</span>
      <strong>{{ "%.1f"|format(director_summary.average_stars) }}</strong>
    </article>
    <article class="summary-card">
      <span class="summary-label">Common shelf</span>
      <strong>{{ director_summary.most_common_shelf|title }}</strong>
    </article>
  </section>

  <section class="diary-feed" aria-label="{{ director_name }} filmography">
    {% for film in films %}
      {% include "_film_card.html" %}
    {% endfor %}
  </section>
{% endblock %}