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

 graphical-query-pictures-results.html

View raw Download
text/html • 1.23 kiB
HTML document, ASCII text
        
            
1
{% extends "default.html" %}
2
{% import "small-annotation-display.html" as annotation_display %}
3
4
{% block nav_title %}Query results{% endblock %}
5
{% block title %}Picture query results | {{ site_name }}{% endblock %}
6
7
{% block content %}
8
<x-frame style="--width: 768px" class="vbox">
9
<h1>Picture query results</h1>
10
<details>
11
<summary>Query YAML</summary>
12
<pre>{{ query }}</pre>
13
</details>
14
<p>
15
Found {{ resources.total }} pictures.
16
</p>
17
<ul class="thumbnail-list">
18
{% for resource in resources %}
19
<li>
20
<a href="/picture/{{ resource.id }}">
21
{{ annotation_display.annotation_display(resource) }}
22
<div class="list-detail">
23
{{ resource.title }}
24
</div>
25
</a>
26
<div class="list-more">
27
<span class="picture-author">by <a href="/profile/{{ resource.author.username }}">{{ resource.author.formatted_name }}</a></span>
28
</div>
29
</li>
30
{% endfor %}
31
</ul>
32
{% include "pagination.html" %}
33
</x-frame>
34
{% endblock %}
35