This commit is contained in:
Tim Lorsbach
2026-04-17 19:39:54 +02:00
parent bcc8745c2d
commit 4012ac356b
15 changed files with 344 additions and 85 deletions

View File

@ -0,0 +1,12 @@
{% if compound.default_structure.pes_link %}
<!-- Image Representation -->
<div class="collapse-arrow bg-base-200 collapse">
<input type="checkbox" checked />
<div class="collapse-title text-xl font-medium">PES Image Representation</div>
<div class="collapse-content">
<div class="flex justify-center">
<img src='{% url 'depict_pes' %}?pesLink={{ compound.default_structure.pes_link|urlencode }}'/>
</div>
</div>
</div>
{% endif %}