Web platform for sharing free data for ML and research

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

 object.html

View raw Download
text/html • 721 B
HTML document, ASCII text
        
            
1
{% extends "default.html" %}
2
{% block title %}Object {{ object.id }} | gigadata{% endblock %}
3
4
{% block content %}
5
<x-frame style="--width: 768px">
6
<h1>{{ object.id }}</h1>
7
<p>{{ object.description }}</p>
8
<h2>Pictures with this object</h2>
9
<ul class="thumbnail-list">
10
{% for resource in resources %}
11
<li>
12
<a href="/picture/{{ resource.id }}">
13
<img src="/raw/picture/{{ resource.id }}" alt="{{ resource.title }}">
14
{{ resource.title }}
15
</a>
16
</li>
17
{% endfor %}
18
</ul>
19
{% include "pagination.html" %}
20
</x-frame>
21
{% endblock %}