roundabout,
created on Thursday, 5 September 2024, 13:31:28 (1725543088),
received on Thursday, 5 September 2024, 13:52:29 (1725544349)
Author identity: vlad <vlad.muntoiu@gmail.com>
fd0841527c4e8336285a6287a80539226c6af2af
static/style.css
@@ -265,6 +265,10 @@ iconify-icon {
align-items: center;
}
.icon-explainer *:nth-child(even) {
font-weight: 300;
}
.required-asterisk::after {
content: "*";
color: var(--color-error);
templates/picture.html
@@ -13,7 +13,20 @@
<x-frame style="--width: 768px">
<h1>{{ resource.title }}</h1>
<p>{{ resource.description }}</p>
<p>{{ resource.file_format }}</p>
<div class="icon-explainer">
<span>Type:</span>
<span>{{ resource.nature.id }}</span>
<span>File format:</span>
<span>{{ resource.file_format }}</span>
<span>Size:</span>
<span>{{ size[0] }}×{{ size[1] }}</span>
</div>
<p>
<a href="{{ resource.origin_url }}">Original source</a> |
<a href="/raw/picture/{{ resource.id }}">View</a> |
<a href="/raw/picture/{{ resource.id }}" download="GigadataPicture_{{ resource.id }}{{ file_extension }}">Download</a> |
<a href="/picture/{{ resource.id }}/annotate">Annotate</a>
</p>
<div id="annotation-zone">
<img id="annotation-image" src="/raw/picture/{{ resource.id }}" alt="{{ resource.title }}">
{% for region in resource.regions %}
@@ -66,11 +79,5 @@
Show objects
</label>
</x-buttonbox>
<p>
<a href="{{ resource.origin_url }}">Original source</a> |
<a href="/raw/picture/{{ resource.id }}">View</a> |
<a href="/raw/picture/{{ resource.id }}" download="GigadataPicture_{{ resource.id }}{{ file_extension }}">Download</a> |
<a href="/picture/{{ resource.id }}/annotate">Annotate</a>
</p>
</x-frame>
{% endblock %}