{% extends "base.html" %} {% block title %}{{ note.title }} — knowledge — dossier{% endblock %} {% block content %}

{{ note.title }}

{{ note.actor_id }} {{ note.state }} {% if verification.verified %} verified {% else %} unverified {% endif %}
back to knowledge
{% if verification.findings %}
verification findings:
{% endif %}
{{ note.body }}

event history

{% for ev in note.events %} {% endfor %}
transition actor timestamp verified
{{ ev.transition or '—' }} {{ actor_display(ev) }} {{ format_timestamp(ev.timestamp) }} {% if ev.transition == 'created' and verification.verified %} verified {% elif ev.transition == 'created' and not verification.verified %} unverified {% else %} {% endif %}
note id
{{ note.note_id }}
created
{{ format_timestamp(note.created_at) }}
updated
{{ format_timestamp(note.updated_at) }}
{% if verification.principal_id %}
signer
{{ verification.principal_id }}
{% endif %} {% if verification.fingerprint %}
fingerprint
{{ verification.fingerprint }}
{% endif %} {% if verification.scheme %}
scheme
{{ verification.scheme }}
{% endif %}
chain intact
{{ verification.chain_intact if verification.chain_intact is defined else 'unknown' }}
{% endblock %}