{% extends "base.html" %} {% block title %}Candidate · goon{% endblock %} {% block content %}
← back {{ cand.kind }} · {{ cand.status }} {{ '%.2f' % cand.score }}
{% if cand.status == "pending" %}
{% else %}
Resolved.
{% endif %}

LEFT

{% if cand.left %} {{ scene_block(cand.left) }} {% else %}
scene missing (id={{ cand.left_id }})
{% endif %}

RIGHT

{% if cand.right %} {{ scene_block(cand.right) }} {% else %}
scene missing (id={{ cand.right_id }})
{% endif %}

Reasons

{{ cand.reasons | tojson(indent=2) }}
{% macro scene_block(s) %}
{{ s.title }}
{{ s.release_date or '?' }} {% if s.studio %} · {{ s.studio.name }}{% endif %} {% if s.duration_sec %} · {{ '%dm%02ds' % (s.duration_sec // 60, s.duration_sec % 60) }}{% endif %}
{% if s.code %}
code: {{ s.code }}
{% endif %}
{% for p in s.performers %} {{ p.canonical_name }}{% if p.as_alias %} as {{ p.as_alias }}{% endif %} {% endfor %}
{% for t in s.tags %}{{ t.name }}{% endfor %}
sources: {% for r in s.external_refs %} {{ r.source }}{% if r.external_id %} · {{ r.external_id[:8] }}{% endif %} {% endfor %}
{% if s.description %}
{{ s.description[:280] }}{% if s.description|length > 280 %}…{% endif %}
{% endif %}
{% endmacro %} {% endblock %}