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<div class="list-detail"> 15{{ resource.title }} 16</div> 17</a> 18</li> 19{% endfor %} 20</ul> 21{% include "pagination.html" %} 22</x-frame> 23{% endblock %}