{# The reader's own annotations on the object this page shows. Read-only: the write half is `git_annotation_edit.html`, which follows it. Included only by the commit page, the way `git_notes_edit.html` is, because a commit is what the browser lets anybody annotate; the file view shows the repository's own notes and nothing private. Nobody but the signed-in reader ever sees a row here. The handler reads their annotation repository and nobody else's, and it reads nothing at all for a visitor who is signed out. #} {% if can_annotate %}

Your annotations

Only you can see these. They live in your own annotation repository, not in this one, and they clone and export like anything else.

{% for a in personal_annotations %}
{% if let Some(origin) = a.origin %} {% if let Some(link) = a.link %} {{ origin }} {% else %} {{ origin }} {% endif %} {% endif %} {{ a.short_target }} {% if !a.updated.is_empty() %} {{ a.updated }} {% endif %} {% if a.orphan %} Annotates a commit makenot.work no longer serves. {% endif %}
{{ a.html|safe }}
{% endfor %}
{% endif %}