{% extends "django_cad_inspector/base_head.html" %}
{% load i18n %}
{% block content %}
{% trans "Scene" %}: {{ object.title }}
{% if lights %}
{% endif %}
{% with stagings=object.staged_entities.all %}
{% if not no_cursor %}
{% for staging in stagings %}
{% if staging.popupContent %}
{% endif %}
{% endfor %}
{% endif %}
{% if lights %}
{% endif %}
{% if object.image %}
{% endif %}
{% for staging in stagings %}
{% if staging.entity.gltf_model %}
{% elif staging.entity.obj_model %}
{% if staging.entity.mtl_model %}{% endif %}
{% endif %}
{% endfor %}
{% if object.image %}{% endif %}
{% for staging in stagings %}
{% if staging.entity.gltf_model %}
{% elif staging.entity.obj_model %}
{% endif %}
{% endfor %}
{% endwith %}
{% endblock content %}