Web platform for sharing free image data for ML and research

Homepage: https://datasets.roundabout-host.com

By using this site, you agree to have cookies stored on your device, strictly for functional purposes, such as storing your session and preferences.

Dismiss

 put-annotations-form.html

View raw Download
text/html • 839 B
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>
11
Submit JSON annotations for the picture <a href="/picture/{{ resource.id }}">{{ resource.title }}</a>.
12
Check 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 %}