start integrating cimar

This commit is contained in:
Ross
2025-02-24 11:53:36 +00:00
parent 249bc656c8
commit a0960c9b7c
21 changed files with 826 additions and 8 deletions
+39
View File
@@ -0,0 +1,39 @@
{% extends 'base.html' %}
{% load partials %}
{% partialdef viewer %}
<div style="height: 100vh; width: 95%, mangin: 0; padding: 0; overflow: hidden;">
<iframe class="embedded-viewer" src="{{viewer_link}}" width="100%" height="95%" style="border:none;"></iframe>
</div>
<style>
.embedded-viewer {
border: none;
pointer-events: auto;
margin: 0; height: 100%; overflow: hidden
}
</style>
{% endpartialdef %}
{% partialdef embed %}
Close
{% partial viewer %}
{% endpartialdef %}
{% block content %}
{% partial viewer %}
{% endblock content %}
{% block css %}
{% endblock css %}