put-annotations-form.html
HTML document, ASCII text
1
{% extends "default.html" %}
2
3
{% block nav_title %}{{ resource.title }}{% endblock %}
4
{% block title %}Submit JSON annotations for {{ resource.title }} | {{ site_name }}{% endblock %}
5
{% block content %}
6
<x-frame style="--width: 768px">
7
<form method="POST" class="vbox">
8
<p>
9
Submit JSON annotations for the picture <a href="/picture/{{ resource.id }}">{{ resource.title }}</a>.
10
Check the documentation for the expected format.
11
</p>
12
<label>
13
<span class="required-asterisk">JSON annotations</span>
14
<textarea name="annotations" required rows="30"></textarea>
15
</label>
16
<button type="submit">Submit</button>
17
</form>
18
</x-frame>
19
{% endblock %}