{% extends "base.html" %} {% block title %}Afterlife: Scan history{% endblock %} {% block content %}
| Started (UTC) | Source | Records | Status | Duration |
|---|---|---|---|---|
| {{ r.started_at[:19] }} | {{ r.source }} | {% if r.records_collected is not none %} {{ r.records_collected }} {% else %} - {% endif %} | {% if r.error %} failed {{ r.error[:80] }}{% if r.error|length > 80 %}…{% endif %} {% elif r.finished_at %} ok {% else %} in progress {% endif %} | {% if r.finished_at and r.started_at %} {{ ((r.finished_at[11:19]|replace(":", "")|int) - (r.started_at[11:19]|replace(":", "")|int))|abs }}s {% else %} - {% endif %} |
afterlife scan ... to see history.