Files
penracourses/templates/cimar.html
T
2024-12-23 12:36:41 +00:00

20 lines
460 B
HTML

{% extends 'base.html' %}
{% block content %}
<div class="anatomy">
{% if link_id %}
<iframe src="https://cloud.cimar.co.uk/link/{{link_id}}" width="100%" height="1000px" style="border:none;"></iframe>
<a href="https://cloud.cimar.co.uk/link/{{link_id}}">Click here to open the CIMAR viewer in a new tab</a>
{% else %}
No link id
{% endif %}
</div>
{% endblock %}