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>
10
{% for resource in resources %}
11
<li>
12
<a href="/picture/{{ resource.id }}">{{ resource.title }}</a>
13
</li>
14
{% endfor %}
15
</ul>
16
{% include "pagination.html" %}
17
</x-frame>
18
{% endblock %}