| Wanted by (Following) | |||
|---|---|---|---|
| #{{ loop.index }} | {{ film.count }} | {{ film.name }} ({{ film.year }}) |
{% for user in film.users|sort %}
{{ user }}
{% endfor %}
|
| Common Films in Watchlist | ||||
|---|---|---|---|---|
| #{{ loop.index }} | @{{ user.name }} | {{ user.matches_count }} / {{ user.total_count }} | {{ user.percentage }}% |
{% for film in user.shared_films %}
{{ film.name }}
{% endfor %}
{% if user.shared_films|length > 8 %}
{% endif %}
{% if user.shared_films|length > 8 %}
{% endif %}
|