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{% set back_url = "/picture/" + resource.id|string %} 6 7{% block content %} 8<x-frame style="--width: 768px"> 9<form method="POST" class="vbox"> 10<p> 11Submit JSON annotations for the picture <a href="/picture/{{ resource.id }}">{{ resource.title }}</a>. 12Check the documentation for the expected format. 13</p> 14<label> 15<span class="required-asterisk">JSON annotations</span> 16<textarea name="annotations" required rows="30"></textarea> 17</label> 18<button type="submit">Submit</button> 19</form> 20</x-frame> 21{% endblock %}