object.html
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 %}