{% extends "annotate_base.html" %} {% block content %}

{% if messages %}
    {% for message in messages %} {{ message }} {% endfor %}
{% endif %}

{{ annotation.title|default:annotation.uri }}

{% if annotation.title %}

URI

{{ annotation.uri }} {% endif %} {% if annotation.tags.all %}

Tags

    {% for tag in annotation.tags.all %}
  • {{ tag }}
  • {% endfor %}
{% endif %} {% if annotation.notes %}

Notes

{{ annotation.notes }}
{% endif %}

Edit
{% endblock content %}