zhongrj
2025-11-24 276323dce9613867abb3f58a4cc2abbfb2fd0dea
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{% extends "app/public/iframe_base.html" %}
 
{% block headers-before-bundle %}
    {% include "3d_model_css.html" %}
{% endblock %}
 
{% block content %}
    <style type="text/css">
    #td-model-placeholder{
        position: absolute !important; top: 0; bottom: 0; left: 0; right: 0;
        margin-top: 0px !important; 
        height: 100% !important;
    }
    </style>
 
    <div data-modelview class="full-height"
        {% for key, value in params %}
            data-{{key}}="{{value}}"
        {% endfor %}
    >
        {% include "3d_model_placeholder.html" %}
    </div>
 
    {% include "3d_model_js.html" %}
    {% load render_bundle from webpack_loader %}
    {% render_bundle 'ModelView' attrs='async' %}
{% endblock %}