36 lines
777 B
HTML
36 lines
777 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}HM-BIZ-PROCESS{% endblock %}
|
|
|
|
{% block head_extra %}
|
|
<style>
|
|
body[data-view-mode="single"],
|
|
body[data-view-mode="dual"] {
|
|
--page-frame-width: calc(100vw - (var(--page-gutter) * 2));
|
|
}
|
|
|
|
.biz-process-shell {
|
|
min-height: calc(100vh - 112px);
|
|
}
|
|
|
|
.biz-process-frame {
|
|
display: block;
|
|
width: 100%;
|
|
min-height: calc(100vh - 122px);
|
|
border: 1px solid var(--line);
|
|
border-radius: 14px;
|
|
background: #ffffff;
|
|
}
|
|
</style>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<section class="panel biz-process-shell">
|
|
<iframe
|
|
class="biz-process-frame"
|
|
src="{{ biz_process_src }}"
|
|
title="HM-BIZ-PROCESS"
|
|
></iframe>
|
|
</section>
|
|
{% endblock %}
|