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

{% if annotation.id %}

Edit "{{ annotation }}"

{% else %}

Add new annotation

{% endif %}
{% if form.non_field_errors %}
{{ form.non_field_errors }}
{% endif %} {% if form.errors %}
{{ form.errors }}
{% endif %} {{ form.uri.errors }} {{ form.uri }}
Title
Tags
Notes
{{ form.title.errors }} {{ form.title }}
{{ form.tags.errors }} {{ form.tags }}

Notes (optional)

You will be able to find the document by the text of this notes, even if the note is not contained in the document content

{{ form.notes.errors }} {{ form.notes }}

{% if annotation.id %} Cancel {% else %} Cancel {% endif %}
{% endblock content %}