Update intranet tools and voucher comparison

This commit is contained in:
b17301
2026-06-04 09:00:51 +09:00
parent 2ab74bac88
commit b93289bfa8
55 changed files with 32809 additions and 1063 deletions
+35
View File
@@ -0,0 +1,35 @@
{% 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 %}