22 lines
502 B
HTML
22 lines
502 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
|
|
|
|
{% url "cimar" %}?link_id=123455
|
|
{% endif %}
|
|
|
|
|
|
|
|
</div>
|
|
{% endblock %} |