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-types.html

View raw Download
text/html • 454 B
HTML document, ASCII text
        
            
1
{% extends "default.html" %}
2
3
{% block title %}List of objects | {{ site_name }}{% endblock %}
4
5
{% block content %}
6
<x-frame style="--width: 768px" class="vbox">
7
<h1>Objects</h1>
8
<dl>
9
{% for object in objects %}
10
<dt><a href="/object/{{ object.id | urlencode }}">{{ object.id }}</a></dt>
11
<dd>{{ object.description }}</dd>
12
{% endfor %}
13
</dl>
14
</x-frame>
15
{% endblock %}
16