branch modified

This commit is contained in:
yangsh
2025-12-02 10:56:57 +09:00
parent b8920315df
commit 9993465da9
39 changed files with 9487 additions and 0 deletions

View File

@@ -0,0 +1,196 @@
<?= $this->extend('layouts/main') ?>
<?= $this->section('content') ?>
<h1>Dashboard</h1>
<div class="row">
<div class="col-md-4 col-xl-4">
<div class="main-card mb-3 card">
<div class="card-body">
<h5 class="card-title">예약 미확정 매물 목록</h5>
<div class="table-responsive">
<table class="mb-0 table">
<thead>
<tr>
<th>접수일자</th>
<th>예약일자</th>
<th>오전/오후</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row"></th>
<td></td>
<td></td>
</tr>
<tr>
<th scope="row"></th>
<td></td>
<td></td>
</tr>
<tr>
<th scope="row"></th>
<td></td>
<td></td>
</tr>
<tr>
<th scope="row"></th>
<td></td>
<td></td>
</tr>
<tr>
<th scope="row"></th>
<td></td>
<td></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<div class="col-md-4 col-xl-4">
<div class="main-card mb-3 card">
<div class="card-body">
<h5 class="card-title">공지사항</h5>
<div class="table-responsive">
<table class="mb-0 table">
<thead>
<tr>
<th>순번</th>
<th>제목</th>
<th>등록일자</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row"></th>
<td></td>
<td></td>
</tr>
<tr>
<th scope="row"></th>
<td></td>
<td></td>
</tr>
<tr>
<th scope="row"></th>
<td></td>
<td></td>
</tr>
<tr>
<th scope="row"></th>
<td></td>
<td></td>
</tr>
<tr>
<th scope="row"></th>
<td></td>
<td></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<div class="col-md-4 col-xl-4">
<div class="main-card mb-3 card">
<div class="card-body">
<h5 class="card-title">검수지연내역(녹취필요)</h5>
<div class="table-responsive">
<table class="mb-0 table">
<thead>
<tr>
<th>접수일자</th>
<th>촬영일자</th>
<th>경과일</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row"></th>
<td></td>
<td></td>
</tr>
<tr>
<th scope="row"></th>
<td></td>
<td></td>
</tr>
<tr>
<th scope="row"></th>
<td></td>
<td></td>
</tr>
<tr>
<th scope="row"></th>
<td></td>
<td></td>
</tr>
<tr>
<th scope="row"></th>
<td></td>
<td></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4 col-xl-4">
<div class="main-card mb-3 card">
<div class="card-body">
<h5 class="card-title">검수지연내역(홍보확인서)</h5>
<div class="table-responsive">
<table class="mb-0 table">
<thead>
<tr>
<th>접수일자</th>
<th>촬영일자</th>
<th>경과일</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row"></th>
<td></td>
<td></td>
</tr>
<tr>
<th scope="row"></th>
<td></td>
<td></td>
</tr>
<tr>
<th scope="row"></th>
<td></td>
<td></td>
</tr>
<tr>
<th scope="row"></th>
<td></td>
<td></td>
</tr>
<tr>
<th scope="row"></th>
<td></td>
<td></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
<?= $this->endSection() ?>

View File

@@ -0,0 +1,5 @@
<?php
echo 'login';