roundabout,
created on Sunday, 6 October 2024, 10:05:33 (1728209133),
received on Saturday, 12 October 2024, 14:56:18 (1728744978)
Author identity: vlad <vlad.muntoiu@gmail.com>
e2a3d49ceed87bd82814253cf98eba0671c1c9ad
templates/object.html
@@ -5,6 +5,28 @@
<x-frame style="--width: 768px">
<h1>{{ object.id }}</h1>
<p>{{ object.description }}</p>
<h2>Supersets</h2>
{% if object.parent_links %}
<ul>
{% for parent in object.parent_links %}
{% set superset = parent.parent %}
<li><a href="/object/{{ superset.id }}">{{ superset.id }}</a></li>
{% endfor %}
</ul>
{% else %}
<p>This object has no supersets.</p>
{% endif %}
{% if object.child_links %}
<h2>Subsets</h2>
<ul>
{% for child in object.child_links %}
{% set subset = child.child %}
<li><a href="/object/{{ subset.id }}">{{ subset.id }}</a></li>
{% endfor %}
</ul>
{% else %}
<p>This object has no subsets.</p>
{% endif %}
<h2>Pictures with this object</h2>
<ul class="thumbnail-list">
{% for resource in resources %}